并非总是更少的代码更好,这是我学到的最后一课
所以我想到了这个问题
在内存管理、速度等方面,有什么更好的?
UIAlertView *message = [[UIAlertView alloc]initWithTitle:@"Notification"
message:@"My message"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:@"Cancelar",nil];
[message show];
或者
[[[UIAlertView alloc]initWithTitle:@"Notification"
message:@"My message"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:@"Cancelar",nil]show];
这是一个非常短的差异(2 行对 1 行),但是当您使用更复杂的代码和函数减少更多代码时,这可能会更加复杂
提前感谢您的回答