我在obj-c中创建了一个集合视图,并定义了视图中的所有属性,如下所示加载
- (void)viewDidLoad{
[super viewDidLoad];
self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc] init];
_collectionView=[[UICollectionView alloc] initWithFrame:self.view.frame collectionViewLayout:layout];
[_collectionView setDataSource:self];
[_collectionView setDelegate:self];
[_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellIdentifier"];
[_collectionView setBackgroundColor:[UIColor redColor]];
[self.view addSubview:_collectionView];
}
所以我的要求是:我希望[self.view addSubview:_collectionView]
,当我点击某个按钮时,在相同的视图控制器和放大器中激活以及不同的视图控制器。