我正在使用Fabric来使用Twitter的服务,我想提一下并引用Fabric的推文,但我还没找到。有没有办法做到这一点?
答案 0 :(得分:0)
我找到了一种使用Fabric的方法:
let composer = TWTRComposer()
composer.setText("@\(username)")
composer.showFromViewController(self) { result in
if (result == TWTRComposerResult.Cancelled) {
println("Tweet composition cancelled")
}
else {
println("Sending tweet!")
}
}