-2

私はこの IBAction を持っていて、このメッセージを送信したいです: Toggle "Program Time" , but this message contains "" my problem is how to use "" in a string?

私のコード:

-(IBAction)sendToggleTime{
[connection SendCode:@"Toggle Program Time"];}

そして私が欲しい:

-(IBAction)sendToggleTime{
[connection SendCode:@"Toggle "Program Time""];}
4

2 に答える 2

4

で引用符をエスケープする必要があります\

これにより、後続のキャラクターの特別な機能が削除されます。

-(IBAction)sendToggleTime{
[connection SendCode:@"Toggle \"Program Time\""];}
于 2013-05-09T01:13:53.750 に答える
0

\" Toggle program title\" のようにバックスラッシュを使用します

于 2013-05-09T01:15:20.037 に答える