से UICollectionView के आइटम/सेल का चयन कैसे करें मैंने अपने ऐप में UICollectionView
लागू किया है। मेरी समस्या यह है कि मुझे चयन करने की आवश्यकता है (जैसे कि उपयोगकर्ता ने उस पर टैप किया है) एक सेल programmatically
। विधि:कोड
- (void)selectItemAtIndexPath:(NSIndexPath *)indexPath
animated:(BOOL)animated
scrollPosition:(UICollectionViewScrollPosition)scrollPosition
कि UICollectionView
वर्ग का हिस्सा है मैं क्या कॉल करने की आवश्यकता है, क्योंकि यह विधि कॉल नहीं करता नहीं है:
- (void)collectionView:(UICollectionView *)collectionView
didSelectItemAtIndexPath:(NSIndexPath *)indexPath
यह सिर्फ करने के लिए सेल की selected
संपत्ति सेट YES
;
आपके सेल को चुनने के बाद विधि को कॉल करने के बारे में क्या? आप [self collectionView: yourView didSelectItemAtIndexPath: yourIndexPath] को कॉल कर सकते हैं; –
हां। समझ गया। धन्यवाद! –
शायद यह उत्तर आपको मदद करेगा http://stackoverflow.com/questions/13177201/select-items-programmatically-in-uicollectionview –