1

我有一个 Singleton 来管理我在应用程序的各个位置需要的一些变量。这是单例,称为 General:

#import "General.h"

static General *sharedMyManager = nil;

@implementation General

@synthesize user;
@synthesize lon;
@synthesize lat;
@synthesize car;
@synthesize firstmess;
@synthesize firstfrom;
@synthesize numcels;

#pragma mark Singleton Methods

+ (id)sharedManager {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
    if (sharedMyManager == nil) {
        sharedMyManager = [[self alloc] init];
    }
});

return sharedMyManager;
}

- (id)init {
if (self = [super init]) {
    user = [[NSString alloc] initWithString:@"vacio"];
    numcels=0;
}
return self;
}

- (void)dealloc {
// Should never be called, but just here for clarity really.
}

@end

我在 TableView 中使用它,该 TableView 显示在我的应用程序一部分的屏幕消息中,该部分是聊天。我的意思是,每次应用程序接收或发送消息时,我都会将 1 添加到 var“numcels”,这就是 numberOfRowsInSection 方法返回的值。

-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
General *general = [General sharedManager];
return *(general.numcels); //It freezes here
}

问题是,当我运行程序时,它冻结在注释行,说 EXC_BAD_ACCESS 代码 = 2。我想问题可能出在单身人士身上,但不知道它到底在哪里。

有什么帮助吗?先感谢您。

- - - -编辑 - - - -

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"Hemos entrado en cellForRowAtIndexPath");
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:@"UITableViewCell"];
if(!cell){
UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"UITableViewCell"];
}
General *general = [General sharedManager];
NSString *text=general.firstmess;//it crashes now here
NSString *remite=general.firstfrom;
[[cell textLabel]setText:remite];
[[cell detailTextLabel] setText:text];

return cell;
}

和 General.h,应要求:

#import <Foundation/Foundation.h>

@interface General : NSObject {
NSString *user;
double lat;
double lon;
}

@property (nonatomic, retain) NSString *user;
@property (assign, nonatomic) double lat;
@property (assign, nonatomic) double lon;
@property (assign, nonatomic) Boolean car;
@property (assign, nonatomic) NSString *firstmess;
@property (assign, nonatomic) NSString *firstfrom;
@property (assign, nonatomic) int numcels;

+ (id)sharedManager;

@end
4

2 回答 2

2

它应该如下所示:

return general.numcels;

numcels是一个整数,您不能将*运算符应用于它。

于 2012-06-14T10:43:14.523 回答
0

解决第一个问题后(感谢 Ankit 的帮助),它在我在 EDIT 下方评论的行中崩溃了。我只是改变了

@property (nonatomc, assign) NSString *firstmess;

@property (retain, nonatomic) NSString *firstmess;

而且它不再崩溃了。

谢谢!

于 2012-06-14T11:35:03.067 回答