3
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Error"
message:@"Some failure message"
delegate:self
cancelButtonTitle:@"cancel"
otherButtonTitles:@"retry", nil
];
[alert show];
[alert release];
我得到了兩個警告指向這段代碼。在UIAlertView分配中丟失哨兵
- 未使用的變量「警報」
- 缺少定點在函數調用
我的代碼類似於所有在線的例子。爲什麼它壞了?
失蹤哨兵通常是關於被遺忘的',無'。 – Dani
謝謝@Dani!不能相信我忘了這麼做:) –