菜鸟教程小白 发表于 2022-12-12 18:37:36

iphone - 使用委托(delegate)数组时出错


                                            <p><p>我试图通过使用我的应用程序委托(delegate)中的“播放器”对象数组进行初始化,在不同的类中创建一个“播放器”对象。此代码在 ios 4.3 上有效(现在仍然有效),但在 ios 5.0 上崩溃(SIGABRT 或 exec_bad_access)。</p>

<p>我已导入应用委托(delegate)。</p>

<p>下面是失败的代码:</p>

<pre><code>PlaybookAppDelegate *delegate = (PlaybookAppDelegate *)
[ delegate];
Player *thisPlayer = ;
</code></pre>

<p>这是我的 AppDelegate 中的声明:</p>

<pre><code>@interface PlaybookAppDelegate : NSObject &lt;UIApplicationDelegate&gt;
{
    NSMutableArray *players;   
}

@property (nonatomic, retain) NSMutableArray *players;
</code></pre>

<p>这里是定义“索引”的方法</p>

<pre><code>-(id)initWithIndexPath:(NSIndexPath *)indexPath{
if (self == ) {
    index = indexPath;
}
return self;
}   
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>indexPath</code> 是一个对象,而不是结构,因此如果您不拥有它,它将被释放。您应该能够像这样解决此问题:</p>

<pre><code>-(id)initWithIndexPath:(NSIndexPath *)indexPath
{
if( (self == ) ) {
    index = ; // need to take ownership of this
}
return self;
}

- (void)dealloc
{
// include all your regular -dealloc code
;
;
}
</code></pre>

<p>此外,对于这些类型的内存问题,您在 iOS 5 中看到该错误纯属巧合。它在 iOS 4 下也不起作用,您很幸运。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 使用委托(delegate)数组时出错,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8647476/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8647476/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 使用委托(delegate)数组时出错