如何使用swift4创建imagePicker

问题描述

我想在UITableViewCell中创建一个图像选择器,我的UITableViewCell看起来像

private let tableViewImage: UITableViewCell = {
    let tableView = UITableViewCell()
    tableView.backgroundColor = .white
    tableView.textLabel?.text = "Image"
    tableView.layer.cornerRadius = 5.0
    tableView.layer.borderWidth = 0.7
    tableView.layer.borderColor = #colorLiteral(red: 0.9063763709,green: 0.9063763709,blue: 0.9063763709,alpha: 1)
    tableView.accessoryType = .disclosureIndicator
    tableView.translatesAutoresizingMaskIntoConstraints = false
    return tableView
}()
func tableViewImage(_ tableViewImage: UITableView,didSelectRowAt indexPath: IndexPath) {
    let cell = UITableViewCell(style :UITableViewCell.CellStyle.default,reuseIdentifier: "cell")
    cell.tag = indexPath.row
    cell.target(forAction: Selector(("getActionImage:")),withSender: self)
    return ()
}
func getActionImage(sender:UITableViewCell)->Void {
    if(sender.tag == 0) {
        print("it worked")
    }
}

添加了从相机或库中添加图片并按我的UITableViewCell作为Action的功能时,应如下所示: How should look like after adding the picture 因此添加的图像应该是其中包含图像的弹出部分,在添加图像之前,单元格只是其中没有弹出部分的一小部分。

由于我是Swift和iOS的新手,所以我找不到以编程方式实现正确解决问题的正确教程。 如果有人可以帮助我,我将不胜感激您的时间和精力。 预先感谢!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)