搜尋

首頁  >  問答  >  主體

objective-c - oc中怎么可以用括号括起来创建一个实例并设置属性

  self.tableView = ({
        UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, (self.view.frame.size.height - 54 * 5) / 2.0f, self.view.frame.size.width, 54 * 5) style:UITableViewStylePlain];
        tableView.autoresizingMask = UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleWidth;
        tableView.delegate = self;
        tableView.dataSource = self;
        tableView.opaque = NO;
        tableView.backgroundColor = [UIColor clearColor];
        tableView.backgroundView = nil;
        tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        tableView.bounces = NO;
        tableView;
    });
巴扎黑巴扎黑2768 天前329

全部回覆(1)我來回復

  • 天蓬老师

    天蓬老师2017-04-22 09:02:11

    /q/1010000000521467

    回覆
    0
  • 取消回覆