
iOS_objective-c
Luyc_Han
努力过后幸福总是来的如此突然
展开
-
获取视图的部分视图
//获取视图的部分内容原创 2016-08-22 20:00:20 · 334 阅读 · 0 评论 -
Undefined symbols for architecture x86_64: "_res_9_setservers", referenced from: _setup_dns_
导入AbleCloud报错 Undefined symbols for architecture x86_64: “_res_9_setservers”, referenced from: _setup_dns_server in QNResolvUtil.o “_res_9_ninit”, referenced from: +[QNResolver sys原创 2016-12-23 12:03:18 · 4048 阅读 · 0 评论 -
performSelectorOnMainThread
/*将数据显示到UI控件,注意只能在主线程中更新UI, 另外performSelectorOnMainThread方法是NSObject的分类方法,每个NSObject对象都有此方法, 它调用的selector方法是当前调用控件的方法,例如使用UIImageView调用的时候selector就是UIImageView的方法 Object:代表调用方法的参数,不过只原创 2017-02-13 15:41:31 · 310 阅读 · 0 评论 -
URL 和JSON和 plist小结
#import "URL.h"@interface URL ()@property(nonatomic,strong) UIWebView *webView;@end@implementation URL(void)viewDidLoad { [super viewDidLoad];self.webView = [[UIWebView alloc]initWithFrame:self.view.原创 2017-03-02 14:35:59 · 307 阅读 · 0 评论 -
XML简略
#import "XMLVC.h"@interface XMLVC ()@end@implementation XMLVC(void)viewDidLoad { [super viewDidLoad]; [self loadXML]; }(void)loadXML{NSURL *url = [[NSURL alloc]initWithString:@”http://192.168.199.原创 2017-03-02 15:45:39 · 229 阅读 · 0 评论 -
ios指纹识别
#import "指纹识别.h" #import <LocalAuthentication/LocalAuthentication.h>@interface __ ()@end@implementation __- (void)viewDidLoad { [super viewDidLoad];[self lAContext];}- (void)lAContext{LAContext原创 2017-03-03 16:33:30 · 402 阅读 · 0 评论 -
关于数据流NSOutputStream
#import "URL.h"@interface URL ()//文件输出流 @property(nonatomic,strong) NSOutputStream * fileStream;@end@implementation URL- (void)viewDidLoad { [super viewDidLoad];self.webView = [[UIWebView alloc]i原创 2017-03-07 12:01:42 · 518 阅读 · 0 评论 -
zip文件解压缩笔记ssziparchive
NSURLSession下载文件 使用ssziparchive 三方类库进行解压缩原创 2017-03-07 14:40:06 · 462 阅读 · 0 评论 -
UIBezierPath绘制进度条
#import "ProgressBtn.h" #define myMIN(a,b) (((a) < (b))?(a):(b)) #define myMIN3(a,b,c) myMIN(myMIN(a,b),c) @implementation HKProgressBtn-(void)setProgress:(float)progress { _progress = progres原创 2017-03-07 15:32:24 · 618 阅读 · 0 评论