我开始编写 iOS 应用程序,我想知道它是否可以将标签的内容保存在变量中。我得到了这个代码:
if (event.subtype == UIEventSubtypeMotionShake) {
int randomNumber = arc4random() %2;
switch (randomNumber) {
case 0:
label.text = [NSString stringWithFormat:@"Out of luck"];
break;
case 1:
label.text = [NSString stringWithFormat:@"Yes, you can"];
break;
default:
break;
}
}
然后我想使用在摇动事件中获得的标签来推特这样的结果:
[twitter setInitialText:[NSString stringWithFormat:@"I asked the app and says:", label]];
但正如我之前所说,我是新手,我被困在这里。有任何想法吗?
先感谢您。