gpt4 book ai didi

iphone - alloc initWithObjects 与 arrayWithObject

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:45:00 24 4
gpt4 key购买 nike

我不明白为什么要写这些代码

icons = [[NSArray alloc] initWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];

应用程序崩溃了。但后来我用这些代码代替了

icons = [NSArray alloc] arrayWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];

而且应用程序没有崩溃。但是这些方法之间的影响是一样的!我不知道为什么?你能帮帮我吗?

最佳答案

  1. initWithObjects 方法意味着您必须在不需要时释放数组对象,因为这是实例方法,更多详细信息click :

  2. arrayWithObjects 方法意味着您无需在不需要时释放数组对象,因为这是类方法,更多详情 click :

如果你不清楚要点,请回复我..

关于iphone - alloc initWithObjects 与 arrayWithObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14932658/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com