啦啦爱在线观看免费视频6_花季传媒3.072_美女跪下吃男人j8免费视频_别揉我胸嗯啊

十三年專注于網(wǎng)站建設(shè)與互聯(lián)網(wǎng)應(yīng)用開(kāi)發(fā),低調(diào)、有情懷的網(wǎng)絡(luò)應(yīng)用服務(wù)商!
南昌百恒科技微信公眾號(hào) 掃一掃關(guān)注
tel-icon全國(guó)服務(wù)熱線:400-680-9298,0791-88117053
掃一掃關(guān)注百恒科技微信公眾號(hào)

在視圖控制器ViewController中如何實(shí)現(xiàn)數(shù)據(jù)源協(xié)議與委托協(xié)議?

百恒 2017-11-16 15:36:05 3191
? ? ? ?集合視圖的委托協(xié)議是UICollectionViewDelegate,數(shù)據(jù)源協(xié)議是UICollectionViewDataSource。?
? ? ? ?UICollectionViewDataSource中的方法有如下4個(gè)。
? ? ? ?collectionView:numberOfItemsInSection:。提供某個(gè)節(jié)中的列數(shù)目。
? ? ? ?numberOfSectionsInCollectionView:。提供視圖中節(jié)的個(gè)數(shù)。
? ? ? ?collectionView:cellForItemAtIndexPath:。為某個(gè)單元格提供顯示數(shù)據(jù)。
? ? ? ?collectionView:viewForSupplementaryElementOfKind:atIndexPath:。為補(bǔ)充視圖提供顯示數(shù)據(jù)。?


? ? ? ?下面南昌APP開(kāi)發(fā)公司-百恒網(wǎng)絡(luò)就來(lái)為大家介紹一下在視圖控制器ViewController中實(shí)現(xiàn)數(shù)據(jù)源協(xié)議UICollectionViewDataSource和委托協(xié)議UICollectionViewDelegate的方法。

? ? ? ?在視圖控制器ViewController中實(shí)現(xiàn)數(shù)據(jù)源協(xié)議UICollectionViewDataSource的代碼如下:?
? ? ? ?override func numberOfSectionsInCollectionView(collectionView: ? ? UICollectionView) -> Int { ? ??
? ? ? ?return self.events.count / 2?
? ? ? ?} ?

? ? ? ?override func collectionView(collectionView: UICollectionView, ? ? numberOfItemsInSection section: Int) -> Int { ? ??
? ? ? ?return 2?
? ? ? ?} ?

? ? ? ?override func collectionView(collectionView: UICollectionView,cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { ? ?
? ? ? ?var cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell",forIndexPath: indexPath) as Cell?

? ? ? ?let event = self.events[indexPath.section*2 + indexPath.row] as NSDictionary ? ?cell.label.text = event["name"] as? String ? ??
? ? ? ?let imageFile = event["image"] as String ? ??
? ? ? ?cell.imageView.image = UIImage(named: imageFile) ? ??
? ? ? ?return cell?
? ? ? ?}?

? ? ? ?- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView ? ? *)collectionView?
? ? ? ?{ ? ??
? ? ? ?return [self.events count] / 2;?
? ? ? ?}?
? ? ? ?- (NSInteger)collectionView:(UICollectionView *)collectionView ? ? ?numberOfItemsInSection:(NSInteger)section?
? ? ? ?{ ? ??
? ? ? ?return 2;?
? ? ? ?}?
? ? ? ?- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView ? ? cellForItemAtIndexPath:(NSIndexPath *)indexPath?
? ? ? ?{ ? ??
? ? ? ?Cell *cell = [collectionView ? ? ? ??
? ? ? ?dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];

? ? ? ?NSDictionary *event = [self.events objectAtIndex:(indexPath.section*2 + indexPath.row)]; ? ??
? ? ? ?cell.label.text = [event objectForKey:@"name"]; ? ??
? ? ? ?cell.imageView.image = [UIImage imageNamed:[event objectForKey:@"image"]]; ? ?return cell;?
? ? ? ?}?

? ? ? ?UICollectionViewDelegate中的方法很多,這里我們選擇幾個(gè)較為重要的加以介紹。?

? ? ? ?collectionView:didSelectItemAtIndexPath:。選擇單元格之后觸發(fā)。?

? ? ? ?collectionView:didDeselectItemAtIndexPath:。不選擇單元格之后觸發(fā)。?


? ? ? ?在視圖控制器ViewController中實(shí)現(xiàn)委托協(xié)議UICollectionViewDelegate的代碼如下:?
? ? ? ?override func collectionView(collectionView: UICollectionView, ? ? ?didSelectItemAtIndexPath indexPath: NSIndexPath) { ? ??
? ? ? ?let event = self.events[indexPath.section*2 + indexPath.row] as NSDictionary ? ?NSLog("select event name : %@", event["name"] as String)?
? ? ? ?}

? ? ? ?- (void)collectionView:(UICollectionView *)collectionView ? ? ?

? ? ? ?didSelectItemAtIndexPath:(NSIndexPath *)indexPath?

? ? ? { ? ??
? ? ? ?NSDictionary *event = [self.events objectAtIndex:(indexPath.section*2 + indexPath.row)]; ? ??
? ? ? ?NSLog(@"select event name : %@", [event objectForKey:@"name"]); ?
? ? ? ?}?

? ? ? ?運(yùn)行上述代碼,得到的輸出結(jié)果如下:?
? ? ? ?select event name : basketball?
? ? ? ?select event name : athletics?
? ? ? ?select event name : archery

? ? ? ?關(guān)于在視圖控制器ViewController中實(shí)現(xiàn)數(shù)據(jù)源協(xié)議與委托協(xié)議的方法就先介紹到這里,如果還有哪些地方不太懂的,歡迎來(lái)電和我們聯(lián)系。此外,百恒網(wǎng)絡(luò)專業(yè)為您提供南昌APP開(kāi)發(fā),小程序開(kāi)發(fā),網(wǎng)站建設(shè)等服務(wù),如有需要,歡迎大家來(lái)電咨詢,洽談合作!
400-680-9298,0791-88117053
掃一掃關(guān)注百恒網(wǎng)絡(luò)微信公眾號(hào)

歡迎您的光顧,我們將竭誠(chéng)為您服務(wù)×

售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售后服務(wù) 售后服務(wù)
 
備案專線 備案專線
 
售后服務(wù) 售后服務(wù)
 
×