Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用NSLog(@"%@");
NSLog(@"%@");
NSLog 结果是 '23204239423' 我不解释为什么......这只是一个例子。
我希望 NSLog 结果出现在 UILabel 中,可以吗?
我试过了:Label.text = (@"%@");,它不起作用。
Label.text = (@"%@");
你知道我该怎么做吗?
谢谢。
NSLog 通常采用如下字符串:
NSLog(@"%@", string);
因此,只需这样做:
label.text = [NSString stringWithFormat:@"%@", string];
你必须放一个变量
NSString *text = @"My Text"; label.text = text;
或者
label.text = @"Your text";