2013-04-30 73 views
1

我已經做了一些環顧這裏的其他職位,但他們都沒有工作。所以,我的問題是使用iOS內置的Twitter API,如何將標籤中的文本包含到最初的Twitter文本中。iOS Twitter API

我:

[tweetSheet setInitialText:@"I have just generated the following numbers from The Lottery App: %@", label1.text]; 

誰能幫助? - 在此先感謝

+0

有內置的Xcode沒有Twitter的API。 – 2013-04-30 18:17:21

+0

對不起,我的道歉 – iYug 2013-04-30 18:41:58

+0

[這裏](http://dummycode.com/b/3)是一個關於整合Twitter API與iOS的好帖子。 – 2013-07-15 22:39:03

回答

0

簡單:

NSString *initialText = [NSString stringWithFormat:@"I have just generated the following numbers from The Lottery App:%@",label1.text] 
[tweetSheet setInitialText:initialText]; 
0
[tweetSheet setInitialText:[NSString stringWithFormat:@"I have just generated the following numbers from The Lottery App: %@", label1.text]];