我是iphone的新手..
其实我想知道是否可以在NSLog完成后放置UIAlertView,因为我想检查语句是否真的有效,因为我无法检查iphone中的NSLog。
请建议我是否有可能以及如何?
答案 0 :(得分:1)
NSLog仍然适用于iPhone .. 如果您已将设备连接到Mac,则只能在控制台中看到它,然后使用该应用程序。
反正。
你可以在这样的日志之后显示你的AlertView。(这个Nslog就是一个例子......替换你的实际日志)
NSLog(@" Image Loaded");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Log" message:@"Image Loaded" delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil];
[alert show];
[alert release];
答案 1 :(得分:0)
如果NSLog语句有效,它将显示在XCode控制台中。因此,如果您通过XCode在手机上调试应用程序,您应该会看到NSLog。或者你有其他想法吗?