Adding UICollectionViewController to UIViewController Not Working
问题 I have a UIViewController and a UICollectionViewController . I add the UICollectionViewController to the UIViewController using the following: UICollectionViewFlowLayout* flowLayout = [[UICollectionViewFlowLayout alloc]init]; [flowLayout setScrollDirection:UICollectionViewScrollDirectionHorizontal]; self.toolsCollectionViewController = [[ToolsCollectionViewController alloc] initWithCollectionViewLayout:flowLayout]; self.toolsCollectionViewController.view.backgroundColor = [UIColor clearColor]