在for循环中加载NibNamed时崩溃

时间:2016-09-26 10:14:56

标签: ios objective-c loadnibnamed

这是对以下问题的继续

https://stackoverflow.com/questions/39673003/crash-on-multiple-calls-to-loadnibnamed

基本上我在打电话

[[NSBundle mainBundle] loadNibNamed:@"YFCalendarDayCell" owner:self options:nil] objectAtIndex:0];

OR

NSArray *objects = [[NSBundle mainBundle] loadNibNamed:nibName
                                                     owner:nil
                                                   options:nil];
在for循环中

。最终崩溃的BadExcess error OR NSArray返回的元素为零。

有没有正确的方法呢?

添加@Autoreleasepool

之后
int i, j, k=0;
for( i=0; i<5; i++ )
{
    for( j=0; j<7; j++ )
    {
        @autoreleasepool {
        YFCalendarDayCell *tableView = [Utility loadNibNamed:@"YFCalendarDayCell" ofClass:[YFCalendarDayCell class]];

        tableView.cellTableView.dataSource = tableView;
        tableView.cellTableView.delegate = tableView;
        tableView.controller = mainViewController;

        //[calendarView addSubview:tableView];

        NSLog(@"tables added to calendar view i: %d j: %d",i,j);

        [calendarView.CellDict setObject:tableView forKey:[[NSNumber numberWithInt:k++] stringValue]];
        }
    }
}

1 个答案:

答案 0 :(得分:1)

尝试以下答案

for (i=0; i<5; i++) {
      @autoreleasepool
      {
          for (j=0; j<7; j++)
          {

            YFCalendarDayCell *tableView = [Utility loadNibNamed:@"YFCalendarDayCell" ofClass:[YFCalendarDayCell class]];

            tableView.cellTableView.dataSource = tableView;
            tableView.cellTableView.delegate = tableView;
            tableView.controller = mainViewController;
            NSLog(@"tables added to calendar view i: %d j: %d",i,j);
            [calendarView.CellDict setObject:tableView forKey:[[NSNumber numberWithInt:k++] stringValue]];
          }
      }
}