alertView =[[TSAlertView alloc] initWithTitle:@"ALERT"
message:@"Please select type" delegate:self
cancelButtonTitle:@"OK" otherButtonTitles:nil];
这在 中运行良好,但在
我委托给时iOS 6
崩溃,然后它就起作用了。我想问题可能是自我被解除的时间警报解除分配。我的疑问是为什么 delegate:self 工作以及为什么它崩溃了?iOS 7
nil
iOS 6
iOS 7
谁能帮我解决这个问题