import UIKit class ViewController: UIViewController {//定义通知的名字,Notification 的“名字”不再是字符串类型,而是 Notification.Name 类型 let myNotification = Notification.Na ...
分类:
编程语言 时间:
2017-09-22 11:58:16
阅读次数:
172
iOS开发如何学习前端(1) 我为何学前端?因为无聊. 概念 前端大概三大块. HTML CSS JavaScript 基本上每个概念在iOS中都有对应的.HTML请想象成只能拉Autolayout或者设置Frame的ViewController.好比你在网页上放了一个Button,如果用HTML你 ...
分类:
移动开发 时间:
2017-09-21 11:20:13
阅读次数:
753
// // ViewController.m // 09-掌握-GCD常用函数 // // Created by xiaomage on 16/2/18. // Copyright © 2016年 小码哥. All rights reserved. // #import "ViewControlle... ...
分类:
移动开发 时间:
2017-09-13 22:14:08
阅读次数:
215
要先给app设置访问相册的权限: 在项目的Info.plist文件里添加Privacy - Photo Library Usage Description权限 ViewController.h: ViewController.m: ...
分类:
移动开发 时间:
2017-09-06 19:40:06
阅读次数:
304
【问题现象】 在block块中使用self时报警告:self strongly in this block is likely to lead to a retain cycle 【问题解决】 __block ViewController *blockSelf = self;_block = ^{ ...
分类:
移动开发 时间:
2017-09-04 14:53:07
阅读次数:
236
// // ViewController.m // 09-UIButton内部子控件的调整 // // Created by xiaomage on 15/12/30. // Copyright © 2015年 小码哥. All rights reserved. // #import "ViewCo... ...
分类:
移动开发 时间:
2017-09-03 17:55:06
阅读次数:
244
原文链接:http://blog.csdn.net/longshihua/article/details/51282388 presentViewController是经常会用到的展现ViewController的方式,而显示和去除presentViewController也是很简单的,主要是下面两 ...
分类:
移动开发 时间:
2017-09-01 18:17:55
阅读次数:
391
// // ViewController.swift // Swift+Dictionary import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() ...
分类:
其他好文 时间:
2017-09-01 10:51:01
阅读次数:
162
// // ViewController.swift // Swift+Array import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self ...
分类:
编程语言 时间:
2017-08-30 15:40:42
阅读次数:
251
// // ViewController.m // 02-UIButton(在代码中使用) // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)v... ...
分类:
移动开发 时间:
2017-08-29 18:09:24
阅读次数:
208