public CollectionViewController(UICollectionViewLayout layout) : base(layout)
        {
            CollectionView.ContentSize     = UIScreen.MainScreen.Bounds.Size;
            CollectionView.BackgroundColor = UIColor.White;

            Speakers = new Speakers();
        }
Esempio n. 2
0
        public CollectionViewController(UICollectionViewLayout layout) : base(layout)
        {
            Speakers = new Speakers();

            // TODO: Step1b: set size and color of the UICollectionView
//			CollectionView.ContentSize = UIScreen.MainScreen.Bounds.Size;
//			CollectionView.BackgroundColor = UIColor.White;
        }