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";