UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Error"
message:@"Some failure message"
delegate:self
cancelButtonTitle:@"cancel"
otherButtonTitles:@"retry", nil
];
[alert show];
[alert release];
我收到两个警告,指出这套法典。
- Unused variable alert
- Missing sentinel in function call
我的守则与在线所有实例相似。 它为什么被打破?