我有一个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中使用它,它存在于我的应用程序的一部分聊天屏幕消息中。 我的意思是,每次应用程序收到或发送消息时,我都会向var“numcels”添加1,这就是numberOfRowsInSection方法返回的值。
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
General *general = [General sharedManager];
return *(general.numcels); //It freezes here
}
问题是,当我运行程序时,它在注释行冻结,说EXC_BAD_ACCESS代码= 2。我想问题可能是单身人士,但不知道它究竟在哪里。
有任何帮助吗?提前谢谢。
------- -------- EDIT
-(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
答案 0 :(得分:2)
应该如下:
return general.numcels;
numcels
是一个整数,您无法将*
运算符应用于它。
答案 1 :(得分:0)
在解决了第一个问题后(感谢Ankit的帮助),它在我在编辑下面评论的行中崩溃了。我只是改变了
@property (nonatomc, assign) NSString *firstmess;
到
@property (retain, nonatomic) NSString *firstmess;
它不再崩溃了。
谢谢!