在不更改视图的情况下向视图添加列表

时间:2012-08-28 12:12:03

标签: objective-c uitableview view uiview

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

1 个答案:

答案 0 :(得分:0)

根据您的要求提供mjpopupviewcontroller链接