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

objective-c 628

#Objective-C
简单九宫格 面试被问到让手写 直接跪了

- (void)jiugongge{ NSArray *array =@[[UIColor cyanColor],[UIColor lightGrayColor], [UIColo…

2015-07-07 580

#Objective-C
forAppDownloadTest

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIS…

2015-07-05 497

#Objective-C
iOS实现图片高斯模糊效果

支持iOS 6.0 and later CIContext *context = [CIContext contextWithOptions:nil]; CIImage *inpu…

2015-07-03 325

#Objective-C
IOS原生API,二维码扫描(https://github.com/reesun1130/SYQRCodeDemo)

+ (BOOL)isAVCaptureActive { AVCaptureDevice *aDevice = [AVCaptureDevice defaultDeviceWithM…

2015-07-03 1,016

#Objective-C
iOS8自带模糊效果

typedef NS_ENUM(NSInteger, UIBlurEffectStyle) { UIBlurEffectStyleExtraLight, UIBlurEffectS…

2015-07-03 469

#Objective-C
根据Date获取x分钟前/x小时前/昨天/x天前/x个月前/x年前的iOS代码

  返回x分钟前/x小时前/昨天/x天前/x个月前/x年前 - (NSString *)timeInfo { return [NSDate timeInfoWithDat…

2015-07-02 302

#Objective-C
iOS取消导航条对视图的影响

iOS7新特性 edgesForExtendedLayout edgesForExtendedLayout是UIExtendedEdge的属性 设置为 self.edgesForE…

2015-07-01 434

#Objective-C
iOS混排计算中英文个数,中午算一个字符,英文和符号算半个字符

-(int)convertToInt:(NSString*)strtemp { int strlength = 0; char* p = (char*)[strtemp cStri…

2015-07-01 536

#Objective-C
iOS 检测手机是否安装SIM卡

[CTSIMSupportGetSIMStatus() isEqualToString:kCTSIMSupportSIMStatusNotInserted] 可以判断是否插入了si…

2015-07-01 499

#Objective-C
IOS利用旋转实现时钟

- (void)viewDidLoad {     [super viewDidLoad];     self.seco…

2015-06-28 817

#Objective-C
用CATextLayer来实现一个UILabel

CATextLayer *textLayer = [CATextLayerlayer]; textLayer.frame =CGRectMake(100,100,100,100);…

2015-06-28 1,003

#Objective-C
IOS实现微信支付流程

1.注册微信开发账号,开通支付权限(注册谁都会了) 2.把三个文件拉进去 libWeChatSDK.a WXApi.h WXApiObject.h 3.添加URL Types 4.…

2015-06-28 604
1 17 18 19 20 21 53