在运行应用程序之前,我收到错误消息“使用 NULL 比较点和整数('int' 和 'void *')”。奇怪的是应用程序每次都运行完美。这是代码片段。
- (IBAction) addButtonAction:(id)sender
{
int timeStamp = nil;
timeStamp = self.hourTextField.intValue;
if (timeStamp == NULL) {
NSLog(@"Nothing here for ya");
}
else {
NSLog(@"monkey shit");
}
}
我在线上得到错误。
if (timeStamp == NULL) {