今天突然想到微信朋友圈发照片,涉及个人隐私的地理位置是否外泄。由于iphone拍照的照片都会带有地理位置等信息。我们先来实现怎么读取里面的安全信息。然后再来分析 #import "ViewController.h" #import <ImageIO/ImageIO.h> #import <Asset ...
分类:
移动开发 时间:
2017-05-13 11:13:09
阅读次数:
196
#import "Rigester_ViewController.h" #import "Rigester_ViewController.h" @interface Rigester_ViewController () @end @implementation Rigester_ViewContro ...
分类:
移动开发 时间:
2017-05-12 20:30:41
阅读次数:
274
由浅入深先来看看最简单的一个例子:#import"ViewController.h"@interfaceViewController()@property(nonatomic,strong)idstrongPoint;@property(nonatomic,weak)idweakPoint;@end@implementationViewController-(void)viewDidLoad{
[superviewDidLoad];//self.strongPoint=[NS..
分类:
其他好文 时间:
2017-05-12 13:45:39
阅读次数:
275
// // ViewController.m // UDPDemo // // Created by qianfeng01 on 15-8-13. // Copyright (c) 2015年 zg. All rights reserved. // #import "ViewController.h ...
分类:
移动开发 时间:
2017-05-06 11:50:20
阅读次数:
254
// // ViewController.m // RunTime // // Created by mac on 2017/4/26. // Copyright © 2017年 cqytjrcqytjr. All rights reserved. // #import "ViewControlle... ...
分类:
其他好文 时间:
2017-05-03 13:17:45
阅读次数:
205
ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController { UIImage *_image; NSInteger _index; } @endViewController.m #imp ...
分类:
其他好文 时间:
2017-05-01 14:20:01
阅读次数:
148
在开发中,现在很多app更新了新功能时都会给出用户一个提示,以方便用户更好的体验,那么这个功能如何实现的呢?
首先看下效果图:
1.首先创建第一个viewcontroller 在上面放上一个ima...
分类:
移动开发 时间:
2017-04-26 10:02:05
阅读次数:
344
// // ViewController.m // 05.聊天室 // // Created by apple on 14/12/5. // Copyright (c) 2014年 heima. All rights reserved. // #import "ViewController.h" #... ...
分类:
移动开发 时间:
2017-04-25 13:36:30
阅读次数:
238
// // ViewController.m // 05.聊天室 // // Created by apple on 14/12/5. // Copyright (c) heima. All rights reserved. // #import "ViewController.h" @interf... ...
分类:
移动开发 时间:
2017-04-25 13:31:55
阅读次数:
253
IOS开发隐藏键盘的4种方法 开发的app中常会用到键盘输入完成后隐藏键盘的情况.在此总结了4种方法来实现我们的目的. 方法一——delegate方式 第一种隐藏键盘的方法,称为delegate三步法: 1. 遵循(委托/代理); 2. 调用; 3. 关联头文件(ViewController.h)中 ...
分类:
移动开发 时间:
2017-04-20 18:39:09
阅读次数:
208