使用 NSLog 打印 NSString 参数
-(void) postToDB:(NSString*) msg{
//print msg
NSString *myphp = @"/Applications/MAMP/htdocs/databases/test.php";
NSURL *url = [NSURL URLWithString:myphp];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request setPostValue:msg forKey:@"message"];
}
在上面的方法中,如何使用 NSLog 打印“msg”?
非常感谢
-(void) postToDB:(NSString*) msg{
//print msg
NSString *myphp = @"/Applications/MAMP/htdocs/databases/test.php";
NSURL *url = [NSURL URLWithString:myphp];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request setPostValue:msg forKey:@"message"];
}
In the above method, how can I print 'msg' using NSLog?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
NSLog(@"%@",msg);
其类型为 NSString。NSLog(@"%@",msg);
its of type NSString.使用这个
Using This
你会喜欢这个:
You will like this: