如何在不更改视图的情况下向视图添加列表(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 ];