如何在不更改视图的情况下将列表(TableView)添加到视图中,我想在当前视图上但在视图中间显示列表,因此也会显示原始视图。
我尝试使用标签...但是添加 tableView 而不是标签时遇到了一些问题。
UIView *testView = [[[UIView alloc] initWithFrame:CGRectMake(0,0, 100, 100)autorelease];
testView.backgroundColor = [[UIColor grayColor] colorWithAlphaComponent:0.2f]; UILabel *label = [[[UILabel alloc] init] autorelease];
label.text = @"TEST";
[label sizeToFit];
[testView addSubview:label];
[self addSubview:testView ];