0

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

1 回答 1

0

根据您的要求参考mjpopupviewcontroller链接

于 2012-08-28T12:19:35.350 回答