我不明白为什么如果我写这些代码
icons = [[NSArray alloc] initWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];
应用程序崩溃了。但是后来我用这些代码代替了
icons = [NSArray alloc] arrayWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];
并且应用程序没有崩溃。但是这些方法之间的效果是一样的!我不知道为什么?你能帮我吗 ?