29,049
社区成员




self.view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)] autorelease];
UITableView * table = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 100, 200) style:UITableViewStylePlain];
//可编辑
table.allowsSelectionDuringEditing = YES;
[self.view addSubview:table];