快速发布gif动画到twitter

时间:2015-02-23 11:34:13

标签: xcode swift animation twitter uiimage

使用swift语言,我试图将创建的gif动画发布到twitter,但是界面只支持addImage - 发布普通图像。当我将gif保存到照片时,使用

let data = NSData(contentsOfURL: url)
            var library : ALAssetsLibrary = ALAssetsLibrary()

            library.writeImageDataToSavedPhotosAlbum(data, metadata: nil, completionBlock:{
                (assetURL: NSURL!, error: NSError!) -> Void in
            })

它工作正常,可以从照片中发布gif动画,但是,在twitter界面中没有这样的东西可以从应用程序发布它。

有一些建议,比如创建animatedimagewithimages:

 let im = UIImage.animatedImageWithImages(imga, duration: 0.1)
                tweetSheet.addImage(im)

但是id也不起作用,发布静态图片。

还有其他选择吗?

1 个答案:

答案 0 :(得分:0)

Twitter现在支持动画GIF,因此不确定您是否已解决了问题。我用动画Gifs测试了这段代码。

func tweetWithImage(data:NSData)
{

    let account = ACAccountStore()
    let accountType = account.accountTypeWithAccountTypeIdentifier(
        ACAccountTypeIdentifierTwitter)

    account.requestAccessToAccountsWithType(accountType, options: nil,
        completion: {(success: Bool, error: NSError!) -> Void in
            if success {
                let arrayOfAccounts =
                account.accountsWithAccountType(accountType)

                if arrayOfAccounts.count > 0 {
                    let twitterAccount = arrayOfAccounts.first as! ACAccount
                    var message = Dictionary<String, AnyObject>()
                    message["status"] = "Test Tweet with image"

                    let requestURL = NSURL(string:
                        "https://api.twitter.com/1.1/statuses/update.json")
                    let postRequest = SLRequest(forServiceType:
                        SLServiceTypeTwitter,
                        requestMethod: SLRequestMethod.POST,
                        URL: requestURL,
                        parameters: message)

                    postRequest.account = twitterAccount
                    postRequest.addMultipartData(data, withName: "media", type: nil, filename: nil)

                    postRequest.performRequestWithHandler({
                        (responseData: NSData!,
                        urlResponse: NSHTTPURLResponse!,
                        error: NSError!) -> Void in
                        if let err = error {
                            println("Error : \(err.localizedDescription)")
                        }
                        println("Twitter HTTP response \(urlResponse.statusCode)")

                    })
                }
            }
            else
            {
                // do what you want here

            }
    })
}

我在我的博客上放了一个教程,其中包含GitHub中的相应项目,说明了使用SLRequest以便支持动画GIF ......你可以在这里看到它:http://www.iosinsight.com/twitter-integration-with-swift/

注意:此答案中的博客代码和代码段使用“update_with_media”更新为请求URL的“更新”,因为后者在Twitter API中已弃用。