我正在尝试以编程方式创建一个视图,其中将包含两个视图,一个视图用于搜索,另一个视图是一个将显示照片的表格视图;

但是我在代码= 2时遇到EXC_BAD_ACCESS错误,所有控制器代码都在下面。我怀疑存在无限循环,但不知道为什么。
谢谢你的帮助...

@interface PhotosViewController () <UITableViewDataSource, UITableViewDelegate>
    @property (strong, nonatomic) UITableView *tableView;
    @end

    @implementation PhotosViewController

    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view.
        self.title = @"Instagram";

        [self.tableView registerClass:[PhotoTableViewCell class] forCellReuseIdentifier:CellIdentifier];

        self.tableView.estimatedRowHeight = UITableViewAutomaticDimension;
        self.tableView.allowsSelection = NO;
    }

    - (void)didReceiveMemoryWarning {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }

    - (void)loadView
    {
        _tableView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain];

        _tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
        _tableView.delegate = self;
        _tableView.dataSource = self;
        [_tableView reloadData];

        [self.view addSubview:_tableView];
    }

    #pragma mark - Table view data source

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
        return 1;
    }

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
        return 1;
    }

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

        PhotoTableViewCell *cell = (PhotoTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

        // Configure the cell...
        [self configureCell:cell atIndexPath:indexPath];

        return cell;
    }

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
        //    NSLog(@"%f", self.navigationController.navigationBar.bounds.size.height);
        return /*tableView.bounds.size.height -self.navigationController.navigationBar.bounds.size.height -*/40.0;
    }

    #pragma mark - Helper Methods

    - (void)configureCell:(PhotoTableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {

        // configure photo cell
        if (cell == nil) {
            cell = [[PhotoTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }

        cell.namelabel.text = @"Mister Tester";
        cell.dateLabel.text = @"2 hours ago";
    }

最佳答案

在loadView中,您不应该首先调用[super loadView]或分配self.view。

我相信没有该阅读self.view可能会导致无限循环。

关于ios - 以编程方式创建表 View 时EXC_BAD_ACCESS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30101023/

10-10 00:45