我试图通过使用我的应用程序委托(delegate)中的“播放器”对象数组进行初始化,在不同的类中创建一个“播放器”对象。此代码在 ios 4.3 上有效(现在仍然有效),但在 ios 5.0 上崩溃(SIGABRT 或 exec_bad_access)。
我已导入应用委托(delegate)。
下面是失败的代码:
PlaybookAppDelegate *delegate = (PlaybookAppDelegate *)
[[UIApplication sharedApplication] delegate];
Player *thisPlayer = [delegate.players objectAtIndex:index.row];
这是我的 AppDelegate 中的声明:
@interface PlaybookAppDelegate : NSObject <UIApplicationDelegate>
{
NSMutableArray *players;
}
@property (nonatomic, retain) NSMutableArray *players;
这里是定义“索引”的方法
-(id)initWithIndexPathNSIndexPath *)indexPath{
if (self == [super init] ) {
index = indexPath;
}
return self;
}
Best Answer-推荐答案 strong>
indexPath 是一个对象,而不是结构,因此如果您不拥有它,它将被释放。您应该能够像这样解决此问题:
-(id)initWithIndexPathNSIndexPath *)indexPath
{
if( (self == [super init]) ) {
index = [indexPath retain]; // need to take ownership of this
}
return self;
}
- (void)dealloc
{
// include all your regular -dealloc code
[index release];
[super dealloc];
}
此外,对于这些类型的内存问题,您在 iOS 5 中看到该错误纯属巧合。它在 iOS 4 下也不起作用,您很幸运。
关于iphone - 使用委托(delegate)数组时出错,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8647476/
|