线程1崩溃:EXC_BAD_ACCESS(目标C)

时间:2017-07-10 10:34:54

标签: ios objective-c iphone xcode uitableview

面对

的问题
  

(主题1:EXC_BAD_ACCESS)

。结了很多但我无法解决。以下是我试过的代码。在NSDictionary *thisRow = [self. EmployeeArr objectAtIndex:row];处遇到问题         (在这里遇到问题,问题是"线程1:EXC_BAD_ACCESS")。请帮我找到问题。 TIA

EmployeesVC.h

@interface Employees : UITableViewController<CacheDBDelegate,JsonServiceClsDelegate,UITableViewDataSource,UITableViewDelegate> {
    CacheDBCommands *cacheDB;
    MBProgressHUD *countryHUD;
    JsonServiceCls *JsonServicePostData;
    OverlayViewController *ovController;
    NSArray *IndexTitles;
    NSMutableArray *listOfItems;
    NSMutableArray *citylistOfItems;
    NSMutableArray *copyListOfItems;
    NSMutableArray *EmployeeArr;
    BOOL searching;
    BOOL letUserSelectRow;

}


@property (retain, nonatomic) NSMutableArray *EmployeeArr;
@end



EmployeesVC.m


#pragma mark -
#pragma mark Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    return [self.EmployeeArr count];
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    NSUInteger row = [indexPath row];

    static NSString *MyIdentifier = @"tableCell";

    CustomMaster *cell = (CustomMaster *) [tableView dequeueReusableCellWithIdentifier:MyIdentifier];

    if (cell == nil) {

        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomMaster" owner:self options:nil];

        for (id currentObject in topLevelObjects){
            if ([currentObject isKindOfClass:[UITableViewCell class]]){
                cell =  (CustomMaster *) currentObject;

            }
        }

    }

    **NSDictionary *thisRow = [self. EmployeeArr objectAtIndex:row];
    (Getting issue here, the issue is "Thread 1: EXC_BAD_ACCESS")**




    cell.label1.text = [thisRow objectForKey:@"Name"];
    if(_WSConstEmployeeID !=nil && ![_WSConstEmployeeID isEqual:@"0"] && ![_WSConstEmployeeID isEqual:@""] &&_WSConstEmployeeSelectedIndex ==row  )
    {
        cell .accessoryType=UITableViewCellAccessoryCheckmark;
    }
    else {
        cell .accessoryType=UITableViewCellAccessoryNone;
    }


    NSString *str=[thisRow objectForKey:@"Id"];
    NSString *stra=_WSConstEmployeeID;
    if ([str isEqualToString:stra]) {
        cell.accessoryType=UITableViewCellAccessoryCheckmark;
        cell.highlighted=YES;
    }else
    {
        cell.accessoryType=UITableViewCellAccessoryNone;

    }

    return cell;

}

1 个答案:

答案 0 :(得分:0)

这是当今时代的一些奇怪的代码。

(1)7年前声明@interface中的iVars已经过时了。如果有ivars,它们在.m中,通常在类扩展中。即便如此,大多数人根本不申报ivars,更喜欢@property

(2)iVars绝不应以大写字母开头。

(3)你所拥有的一个财产被宣告为retain也是旧的方式;通常,在ARC之前或ARC之外使用。你有ARC打开吗?

如果您没有开启ARC,那么您是否保留EmployeesArr?如果没有,那就是你的崩溃。如果您没有打开ARC,为什么不呢?你可能应该。