swift语言IOS8开发战记19 UIImagePickerController

简介:   我们接着上一话的内容来讲,首先在我们添加一个餐馆的页面中把点击的背景色取消掉使用的是以下语句:cell.selectionStyle = UITableViewCellSelectionStyle.None除了none之外,还有许多颜色的选项,大家可以自己试试。

  我们接着上一话的内容来讲,首先在我们添加一个餐馆的页面中把点击的背景色取消掉使用的是以下语句:

cell.selectionStyle = UITableViewCellSelectionStyle.None

除了none之外,还有许多颜色的选项,大家可以自己试试。然后我们需要点击小相机的图片能打开我们的相册让我们选择图片,我们在选择的代理方法中增加一个我们自己定义的方法,代码如下:

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {//点击行的代理方法
        var row:NSInteger = indexPath.row
        if row == 0{
        self.didClickedImageView()
        }
下面是didClickedImageView的代码:
func didClickedImageView(){
    let imagePicker = UIImagePickerController() //选择图片
    let isAvailable = UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera)
        imagePicker.sourceType = .PhotoLibrary
        if isAvailable {
            imagePicker.sourceType = .Camera
        }
        self.presentViewController(imagePicker, animated: true, completion: nil)
    }

点击小相机的图标显示如下:


现在我们希望我们选择了照片之后可以把该照片保存到第一行之中,这就需要在点击第一行的时候把当前的类当做imagePicker的代理,所以把点击第一行所触发的方法didClickedImageView修改如下:

func didClickedImageView(){
    let imagePicker = UIImagePickerController() //选择图片
    let isAvailable = UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera)
        imagePicker.sourceType = .PhotoLibrary
        imagePicker.delegate = self//代理设为自己
        if isAvailable {
            imagePicker.sourceType = .Camera
        }
        self.presentViewController(imagePicker, animated: true, completion: nil)
    }

imagePicker是UIImagePickerController类型的,要实现这个类型的代理,必须继承
UINavigationControllerDelegateUIImagePickerControllerDelegate,然后我们实现代理方法imagePickerController用来保存我们选择的图片,代码如下:

 func imagePickerController(picker: UIImagePickerController!, didFinishPickingImage image: UIImage!, editingInfo: [NSObject : AnyObject]!) {//保存图片
        imageView.image = image
            picker.dismissViewControllerAnimated(true, completion: nil)
        }

在选中图片后,效果如图



接下来我们来实现下面这几行,代码如下:

 func configureCell(cell:UITableViewCell, indexPath: NSIndexPath){
        let row:NSInteger = indexPath.row
        var nameLabel = UILabel(frame: CGRectMake(10, 5, 200, 15))
            switch row{
        case 0:
         imageView = UIImageView(frame: CGRectMake(0, 0, 320, 250))
            imageView.image = UIImage(named: "camera")
            imageView.contentMode = UIViewContentMode.ScaleAspectFit
            cell.addSubview(imageView)
        case 1:
            nameLabel.text = "Name"
            cell.addSubview(nameLabel)
                var textFiled = UITextField(frame: CGRectMake(10, 20, 250, 40))
            textFiled.placeholder = "Restaurant Name"
                cell.addSubview(textFiled)
        case 2:
            nameLabel.text = "Type"
            cell.addSubview(nameLabel)
            var textFiled = UITextField(frame: CGRectMake(10, 20, 250, 40))
            textFiled.placeholder = "Restaurant Type"
            cell.addSubview(textFiled)
            
        case 3:
            nameLabel.text = "Location"
            cell.addSubview(nameLabel)
            var textFiled = UITextField(frame: CGRectMake(10, 20, 250, 40))
            textFiled.placeholder = "Restaurant Location"
            cell.addSubview(textFiled)
        default:
            nameLabel.text = "Have you been here?"
            cell.addSubview(nameLabel)
            
            
        }
    }
结构都比较相似,我们把之前的if结构改成了switch,UITextFiled有一个属性placeholder,实现了水印字体的效果,效果如下:

在最后一栏中需要加两个按钮,一个YES和一个NO,然后再导航栏中增加一个标题,NewViewController的完整代码如下:

import UIKit

class NewViewController: UIViewController,UITableViewDataSource,UITableViewDelegate,UINavigationControllerDelegate,UIImagePickerControllerDelegate  {
let identifier = "newCell"
    var imageView:UIImageView!
    override func viewDidLoad() {
        super.viewDidLoad()
self.view.backgroundColor = UIColor.orangeColor()
        
        //增加一个tableview
        var tableView = UITableView(frame: self.view.bounds, style: .Plain)
        tableView.dataSource = self
        tableView.delegate = self
        tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "newCell")
        self.view.addSubview(tableView)
        self.navigationItem.title = "New Restaurant"
        
    }
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        
        let cell = UITableViewCell(style: .Default, reuseIdentifier: "newCell")
        self.configureCell(cell, indexPath: indexPath)
        cell.selectionStyle = UITableViewCellSelectionStyle.None//选中的背景色
        return cell
    }
    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        var row:NSInteger = indexPath.row
        var rowHeight:CGFloat = 62
        if row == 0
        {
        rowHeight = 250
        }
        return rowHeight
    }
    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        var row:NSInteger = indexPath.row
        if row == 0{
        self.didClickedImageView()
        }
    }
    
    func configureCell(cell:UITableViewCell, indexPath: NSIndexPath){
        let row:NSInteger = indexPath.row
        var nameLabel = UILabel(frame: CGRectMake(10, 5, 200, 15))
            switch row{
        case 0:
         imageView = UIImageView(frame: CGRectMake(0, 0, 320, 250))
            imageView.image = UIImage(named: "camera")
            imageView.contentMode = UIViewContentMode.ScaleAspectFit
            cell.addSubview(imageView)
        case 1:
            nameLabel.text = "Name"
            cell.addSubview(nameLabel)
                var textFiled = UITextField(frame: CGRectMake(10, 20, 250, 40))
            textFiled.placeholder = "Restaurant Name"
                cell.addSubview(textFiled)
        case 2:
            nameLabel.text = "Type"
            cell.addSubview(nameLabel)
            var textFiled = UITextField(frame: CGRectMake(10, 20, 250, 40))
            textFiled.placeholder = "Restaurant Type"
            cell.addSubview(textFiled)
            
        case 3:
            nameLabel.text = "Location"
            cell.addSubview(nameLabel)
            var textFiled = UITextField(frame: CGRectMake(10, 20, 250, 40))
            textFiled.placeholder = "Restaurant Location"
            cell.addSubview(textFiled)
        default:
            nameLabel.text = "Have you been here?"
            cell.addSubview(nameLabel)
            var leftBtn = UIButton(frame: CGRectMake(10, 30, 50, 25))
            leftBtn.setTitle("YES", forState: .Normal)
                leftBtn.setTitleColor(UIColor.whiteColor(), forState: .Normal)
                leftBtn.backgroundColor = UIColor.redColor()
                cell.addSubview(leftBtn)
            var rightBtn = UIButton(frame: CGRectMake(90, 30, 50, 25))
            rightBtn.setTitle("NO", forState: .Normal)
            rightBtn.setTitleColor(UIColor.whiteColor(), forState: .Normal)
            rightBtn.backgroundColor = UIColor.grayColor()
                cell.addSubview(rightBtn)
            
        }
    }
    
    func didClickedImageView(){
    let imagePicker = UIImagePickerController() //选择图片
    let isAvailable = UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera)
        imagePicker.sourceType = .PhotoLibrary
        imagePicker.delegate = self
        if isAvailable {
            imagePicker.sourceType = .Camera
        }
        self.presentViewController(imagePicker, animated: true, completion: nil)
    }
    
    func imagePickerController(picker: UIImagePickerController!, didFinishPickingImage image: UIImage!, editingInfo: [NSObject : AnyObject]!) {//保存图片
        imageView.image = image
            picker.dismissViewControllerAnimated(true, completion: nil)
        }
    
}




目录
相关文章
|
3天前
|
机器学习/深度学习 TensorFlow Swift
Swift语言适合多个领域的开发
Swift语言适合多个领域的开发
23 9
|
3天前
|
安全 编译器 Swift
Swift开发
Swift开发
19 9
|
4天前
|
机器学习/深度学习 人工智能 移动开发
Swift语言作为苹果公司推出的现代编程语言
Swift语言作为苹果公司推出的现代编程语言
20 8
|
6天前
|
安全 数据处理 Swift
深入探索iOS开发中的Swift语言特性
本文旨在为开发者提供对Swift语言在iOS平台开发的深度理解,涵盖从基础语法到高级特性的全面分析。通过具体案例和代码示例,揭示Swift如何简化编程过程、提高代码效率,并促进iOS应用的创新。文章不仅适合初学者作为入门指南,也适合有经验的开发者深化对Swift语言的认识。
24 9
|
4天前
|
机器学习/深度学习 安全 数据挖掘
Swift语言的应用场景非常广泛
Swift语言的应用场景非常广泛
16 4
|
4天前
|
安全 Swift iOS开发
Swift语言
Swift语言
14 4
|
5天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异和挑战
【10月更文挑战第37天】在移动应用开发的广阔舞台上,安卓和iOS这两大操作系统扮演着主角。它们各自拥有独特的特性、优势以及面临的开发挑战。本文将深入探讨这两个平台在开发过程中的主要差异,从编程语言到用户界面设计,再到市场分布的不同影响,旨在为开发者提供一个全面的视角,帮助他们更好地理解并应对在不同平台上进行应用开发时可能遇到的难题和机遇。
|
3天前
|
iOS开发 开发者
探索iOS开发中的SwiftUI框架
【10月更文挑战第39天】在苹果的生态系统中,SwiftUI框架以其声明式语法和易用性成为开发者的新宠。本文将深入SwiftUI的核心概念,通过实际案例展示如何利用这一框架快速构建用户界面,并探讨其对iOS应用开发流程的影响。
|
6天前
|
JSON 前端开发 API
探索iOS开发之旅:打造你的第一个天气应用
【10月更文挑战第36天】在这篇文章中,我们将踏上一段激动人心的旅程,一起构建属于我们自己的iOS天气应用。通过这个实战项目,你将学习到如何从零开始搭建一个iOS应用,掌握基本的用户界面设计、网络请求处理以及数据解析等核心技能。无论你是编程新手还是希望扩展你的iOS开发技能,这个项目都将为你提供宝贵的实践经验。准备好了吗?让我们开始吧!
|
9天前
|
存储 数据可视化 Swift
探索iOS开发之旅:从新手到专家
【10月更文挑战第33天】在这篇文章中,我们将一起踏上一场激动人心的iOS开发之旅。无论你是刚刚入门的新手,还是已经有一定经验的开发者,这篇文章都将为你提供宝贵的知识和技能。我们将从基础的iOS开发概念开始,逐步深入到更复杂的主题,如用户界面设计、数据存储和网络编程等。通过阅读这篇文章,你将获得成为一名优秀iOS开发者所需的全面技能和知识。让我们一起开始吧!