Concat 2文本字段值并将其放在rails中的另一个文本字段中

时间:2016-12-21 05:39:07

标签: javascript ruby-on-rails

我对rails非常陌生,请帮助我轻松帮助我。

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
    {
        return model.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
    {
        cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! FbHomeCell
        cell.btnPushImage.tag = indexPath.row
        cell.collectionView.tag = indexPath.row
        cell.setCollectionViewWith(colorArray: model[indexPath.row])
        return cell
    }

这是我的观点我想合并管理器和状态的值并将它放在concat字段中如何做,我搜索了很多,但它没有帮助。

0 个答案:

没有答案