首页 软件开发 代码片段 objective-c ( Page 4 )

objective-c 628

#Objective-C
牛B的iOS程序猿,此代码你们认为有问题吗?如果有问题在哪

NSMutableArray *userList = [userDefaults objectForKey:@"userList"]; if(userList){ if(![use…

2015-11-29 480

#Objective-C
iOS隐藏tableview多余的分割线

//tableview没有数据的时候不显示线 _tableView.tableFooterView = [[UIView alloc] init];

2015-11-28 528

#Objective-C
textField弹起键盘时,背景视图调整避免键盘遮挡

- (void)viewDidLoad{ ... // 1.通知中心添加观察者,监听键盘是否弹出 [[NSNotificationCenter defaultCenter]addO…

2015-11-28 694

#Objective-C
侧滑手势ios 关于interactivePopGestureRecognizer

self.navigationController.interactivePopGestureRecognizer.enabled = YES; 这个api功能就是在Navigat…

2015-11-28 608

#Objective-C
秒杀并取代Core Data框架!

原谅我,写这样的标题,其实是想引起您的注意,这是几个框架的开篇,还没写完,请持续关注!谢谢 使用说明请看:https://github.com/nsdictionary/CoreF…

2015-11-27 982

#Objective-C
IOS 扫二维码

注意:本篇文章采用了IOS7的新特性来扫二维码,所以系统支持要IOS7以上,如果要兼容IOS7之前的版本,自行找库来支持。 为了方便,我把扫二维码简单封装到了一个UIView中,用…

2015-11-27 346

#Objective-C
iOS中关联对象objc_setAssociatedObject的简单使用(传值使用)

#import "wangmumu.h" @interface wangmumu () { } @end static char staticString; @implementa…

2015-11-26 819

#Objective-C
iOS tableView的增加,删除,刷新,更新的方法

NSIndexPath *index = [NSIndexPath indexPathForRow:1 inSection:0]; //插入某一行 [self.tableView …

2015-11-25 459

#Objective-C
NetWorkingHTTP

-(void)buttonClick { NSString *url = @"http://api.k780.com:88/?app=weather.future&weai…

2015-11-23 519

#Objective-C
iOS调用系统摄像头和相册

在一些应用中,我们需要用到iOS设备的摄像头进行拍照,视频。并且从相册中选取我们需要的图片或者视频。 关于iOS摄像头和相册的应用,可以使用UIImagePickerControl…

2015-11-21 433

#Objective-C
iOS关于判断输入的密码是否合法,价格动态判断合法性

一:正则表达式再用 #pragma 正则匹配手机号 + (BOOL)checkTelNumber:(NSString *) telNumber { NSString *patter…

2015-11-21 531

#Objective-C
OpenShare:不用 QQ、微信、微博等社交网络官方 SDK,实现分享&登录

OSMessage *msg=[[OSMessage alloc] init]; msg.title=@"Hello World"; //分享到微信 [OpenShare shar…

2015-11-20 642