首页 软件开发 代码片段 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原生API,二维码扫描(https://github.com/reesun1130/SYQRCodeDemo)

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

2015-07-03 1,015

#Objective-C
iOS8自带模糊效果

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

2015-07-03 469

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

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

2015-07-03 325

#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输入地址得出经纬度

CLGeocoder *myGeocoder = [[CLGeocoder alloc] init]; [myGeocoder geocodeAddressString:_sear…

2015-06-28 845

#Objective-C
ios中做出颜色渐变的效果

CAGradientLayer *gradient = [CAGradientLayer layer]; gradient.frame = self.view.bounds; gr…

2015-06-28 827

#Objective-C
利用CIDetector来人脸识别

利用CIDetector来人脸识别 添加图片: UIImage* image = [UIImage imageNamed:@"face.jpg"]; …

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