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

objective-c 628

#Objective-C
ios9中 UIStackView的使用

UIStackView可以垂直或水平排布多个subview, 自动为每个subview创建和添加Auto Layout constraints. 1.添加subview let l…

2015-06-28 979

#Objective-C
ios输入地址得出经纬度

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

2015-06-28 864

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

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

2015-06-28 842

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

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

2015-06-28 985

#Objective-C
iOS实现爆炸的效果

    CAEmitterLayer *emitter = [CAEmitterLayer layer];     emitter…

2015-06-28 762

#Objective-C
IOS把图片切成小片

#import <Foundation/Foundation.h> #import <AppKit/AppKit.h> int main(int argc,…

2015-06-28 821

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

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

2015-06-28 835

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

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

2015-06-28 1,018

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

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

2015-06-28 620

#Objective-C
利用UIWebView显示gif

NSString *path = [[NSBundle mainBundle] pathForResource:@"3" ofType:@"gif&q…

2015-06-28 774

#Objective-C
iOS翻牌效果

- (IBAction)rotate:(id)sender { [UIView beginAnimations:@"View Filp" context:nil…

2015-06-28 644

#Objective-C
iOS 获取手机存储空间的大小

@import Darwin.sys.mount; int main(int argc, char * argv[]) { @autoreleasepool { struct st…

2015-06-28 986
1 18 19 20 21 22 53