objective-c - 如何從table傳值給cell?
仅有的幸福
仅有的幸福 2017-04-28 09:06:11
0
1
768

問題是這樣的,我現在想往自訂cell中傳入幾個判斷條件,用以判斷是否添加圖片標籤等等,請問能否在返回cell時添加用屬性給cell中傳值

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
            {
                tabelViewCell1 *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
                NSDictionary *dic = _arr[indexPath.row];
                cell.name.text = dic[@"userinfo"][@"uname"];
                [cell.imgView sd_setImageWithURL:[NSURL URLWithString:dic[@"userinfo"][@"icon"]]];
                cell.songId = @"ddd";
                return cell;
            }

songId並不能傳進cell中

仅有的幸福
仅有的幸福

全部回覆(1)
Ty80

在tabelViewCell1中你定義songId了嗎?檢查一下吧 是不是代碼其他地方有問題。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板