我已将Twitter实施到我的iPhone应用程序中。我只是想知道每次我想要发推文时,我是否可以在文本字段中预定义文本。
答案 0 :(得分:0)
当然,只要您将预定义文本存储在某个地方,就可以在需要时访问它。
-(void)tweetSomething {
[tweet withText:[NSString stringWithFormat:@"Tweeting! #%@",[self myApp]]];
/* [self myApp] can be something you have stored somewhere else */
}
-(NSString *)myApp {
/* define your own plist file */
return [NSString stringWithFormat:@"%@",[plist objectForKey:@"kMyPredefinedTweetText"]];
}