Re: [問題] 請教關於CollectionView上面的Button。

作者: darktt (小朱)   2014-08-07 21:40:44
不知道這個問題是否節解決了,
不過我最近也正在用 CollectionView,
所以可以做點幫忙。
※ 引述《kiii210 (HelloWorld!)》之銘言:
: 建立一個mp3名稱的array,順序跟你的textView要用的array一樣
: -> @[@"song1",@"song2"];
: 在cellForItemAtIndexPath裏面給每一個button一個編號
: -> button.tag = indexPath.row
其實不用這樣子做,
只要 button.superview 就是 cell 了,
不過這要看 button 是否是直接加進 cell 或是 cell.contentView,
不管哪一個只要一直用 superview 就可以取得上一層的 view。
就像是這樣子
UIView *cellContentView = button.superview;
UICollectionViewCell *cell = (UICollectionViewCell *)cellContentView.superview;
UICollectionView *collectionView = (UICollectionView *)cell.superview;
只要這樣子就能知道 cell 所屬的 indexPath 了,
這樣子也不會出現因為 button 的 tag 被 reuse 而設定錯誤的問題了。
另外,AVPlayer 有另外一個 AVQueuePlayer 可以使用來播放多個音樂或影片,
這樣子可以解決播放的問題。
作者: whitefur (白毛)   2014-08-07 22:04:00
建議不要用superview來取cell, 因為不能保證你拿到的東西用contentView比較安全
作者: crazyni68 (めがね)   2014-08-08 00:35:00
我已經解決了~謝謝你們的意見~: )
作者: xinya707 (媽我在這)   2014-09-17 14:40:00
Days matter 倒數忌日都有記日
作者: Decill (inner peace)   2014-09-17 14:44:00
一樓我知道是輸入法問題 不過我還是忍不住笑了
作者: happyfuture (!)   2014-09-17 14:46:00
1F好嚇人阿XD

Links booklink

Contact Us: admin [ a t ] ucptt.com