我不明白为什么我写这些代码
icons = [[NSArray alloc] initWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];
该应用程序崩溃了。但后来我用这些代码替换了
icons = [NSArray alloc] arrayWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];
并且应用程序没有崩溃。 但这些方法之间存在相同的影响! 我不知道为什么?你可以帮帮我吗?