微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何使用swift4创建imagePicker

如何解决如何使用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 举报,一经查实,本站将立刻删除。