我们一般开发中的大部分都是使用reveal以及xcode查看视图层级以及使用lldb (thread backtrace)的命令查看层级与调用堆栈.还有一种方法可以直观的在我们的APP中显示出来,可以查看整个 window 的 View 嵌套关系,查看当前 ViewController 的属性,查看 ...
分类:
移动开发 时间:
2017-07-04 12:08:10
阅读次数:
206
一,效果图。 二,代码。 ViewController.m ...
分类:
移动开发 时间:
2017-07-03 12:02:46
阅读次数:
126
文章只要你有一点点基础应该就可以看的懂,文章只为学习交流 #import "ViewController.h" @interface ViewController () @property (nonatomic,retain)UIImageView *imageView; @property (no ...
分类:
移动开发 时间:
2017-06-29 11:21:04
阅读次数:
244
当一个视图控制器被创建,并在屏幕上显示的时候。 代码的执行顺序1、 alloc 创建对象,分配空间2、init (initWithNibName) 初始化对象,初始化数据3、loadView 从nib载入视图 ,通常这一步不需要去干涉。除非你没有使用xib文件创建视图4、viewDidLoad 载入 ...
分类:
移动开发 时间:
2017-06-29 10:04:58
阅读次数:
248
首先,视图控制器必须得实现协议UIAlertViewDelegate中的方法,并指定delegate为self,才能使弹出的Alert窗口响应点击事件。 具体代码如下: ViewController.h中的代码如下: [cpp] view plain copy #import <UIKit/UIKi ...
分类:
其他好文 时间:
2017-06-27 14:57:47
阅读次数:
114
一,工程图。 二,代码。 #import "ViewController.h" #import "Base64CodeByteFunc.h" @interface ViewController () @end @implementation ViewController - (void)viewDi ...
分类:
移动开发 时间:
2017-06-26 10:29:28
阅读次数:
163
// // ViewController.m // CoreImageOfDong // // Created by Dong on 15/6/30. // Copyright (c) 2015年 xindong. All rights reserved. // #import "ViewContr ...
分类:
移动开发 时间:
2017-06-25 12:01:30
阅读次数:
257
// // ViewController.m // CX 音效 // // Created by ma c on 16/4/15. // Copyright © 2016年 bjsxt. All rights reserved. // #import "ViewController.h" #impo... ...
分类:
移动开发 时间:
2017-06-18 22:46:55
阅读次数:
235
// // ViewController.m // CX 二维码扫描 // // Created by ma c on 16/4/12. // Copyright © 2016年 bjsxt. All rights reserved. // #import "ViewController.h" #i... ...
分类:
移动开发 时间:
2017-06-18 22:46:48
阅读次数:
145
这篇博客将会介绍二维码的生成。 由于没有什么东西值得长篇大论的,所以这里我就通过代码的实现介绍二维码。 第一部分 第一部分是二维码的简单生成没有其他重点介绍。 效果图 代码部分 // // ViewController.m // CX 二维码生成 // // Created by ma c on 1 ...
分类:
移动开发 时间:
2017-06-18 22:46:39
阅读次数:
238