Can iOS 5 Twitter API be used to send a private (direct) message? I can't seem to find out how.
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
You can't edit the text that the User sends via the Twitter Compose window but you can set the initial text using the
setInitialText:
method and use the Twitter DM Syntax. The Twitter DM Syntax is described hereYou can't modify the window or the tweet once the view is shown so you can't tack it on at the end when the User presses Send. The Twitter Framework doesn't abstract DM'ing out of the box with all the features such as choosing who to send to but using this Twitter DM Syntax works just fine if you know the recipient or ask the User to input the Username of the recipient after the
d