我有一个 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