swift
岁月绵长
这个作者很懒,什么都没留下…
展开
-
swift 绘图
继承UIView,在overridefuncdrawRect(rect: CGRect)中重写绘制方法 let context=UIGraphicsGetCurrentContext()获取画布 画线CGContextMoveToPoint(context,100,100)//移动起始点CGContextAddLineToPoint(context,150,原创 2015-08-23 18:57:45 · 283 阅读 · 0 评论 -
swift 动画
//由dogImg转化成caImage,用时一秒,使用TransitionFlipFromRight效果,完成后调用completion指定方法UIView.transitionFromView(dogImg, toView:caImage, duration: 1, options:UIViewAnimationOptions.TransitionFlipFromRight, com原创 2015-08-24 18:42:52 · 376 阅读 · 0 评论 -
swift 属性监视器
var att:Int=10{//改变前调用willSet,参数为新值willSet(newValue){ print(newValue) print(att)}//改变后调用didSet,参数为旧值didSet(oldValue){ print(oldValue) print(att)}}原创 2015-08-25 08:46:21 · 339 阅读 · 0 评论 -
swift 选取图库中的图片
选取图库中的一张图片,并显示在UIImageView中 @IBOutlet weakvar imageView: UIImageView! @IBAction func pickerImg(sender:AnyObject) { //新建UIImagePickerController对象 let i=UIImag原创 2015-08-26 13:08:51 · 913 阅读 · 0 评论 -
swift 异常处理
//异常处理 do{ //代码 defer{ //代码 //该块方法出现异常则在异常出现后调用,然后进入处理异常代码 //没有出现异常则在do语句其它部分调用完成后原创 2015-08-26 17:00:23 · 392 阅读 · 0 评论 -
swift 错误处理
swift2.0中字典Cannot subscript a value of type 'NSDictionary?' with an index of type 'String'错误处理原创 2015-08-27 16:20:58 · 1335 阅读 · 0 评论 -
swift解析XML(NSXMLParser)
XML文件(xmlData.xml)处理代码原创 2015-08-27 08:00:31 · 711 阅读 · 0 评论 -
swift plist处理
swift 的plist处理原创 2015-08-27 17:05:36 · 484 阅读 · 0 评论 -
swift 跳转页面
跳转代码let vc= ViewController() //改成自己的类名self.presentViewController(vc,animated:true,completion:nil) 返回代码self.dismissViewControllerAnimated(true,completion:nil)原创 2015-08-22 16:48:21 · 509 阅读 · 0 评论