是否有可能在Twitter中有预定义的文本?

时间:2011-01-21 04:52:17

标签: ios twitter

我已将Twitter实施到我的iPhone应用程序中。我只是想知道每次我想要发推文时,我是否可以在文本字段中预定义文本。

1 个答案:

答案 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"]];
}