0
我知道如何使用標準iOS 5 twitter框架(使用代碼波紋管)發送消息。我不知道:iOS:設置鳴叫收件人
a)如果可以向特定收件人(我)發送推文。我想這樣做是因爲我的應用程序中的「聯繫我們」功能,以便用戶可以給我發消息。
b)如果有一種方法可以讓用戶在Twitter上關注我。
在此先感謝!
-(IBAction)twitter:(id)sender {
if ([TWTweetComposeViewController canSendTweet])
{
TWTweetComposeViewController *tweetSheet =
[[TWTweetComposeViewController alloc] init];
[tweetSheet setInitialText:
@"About my app"];
[self presentModalViewController:tweetSheet animated:YES];
}
else
{
UIAlertView *alertView = [[UIAlertView alloc]
initWithTitle:@"Error"
message:@"No Internet Connection"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
}}
太容易了!非常感謝你! – 2012-07-30 11:53:33