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

objective-c 628

#Objective-C
UIColor转换为UIImage

/** * color转image */ - (UIImage*)createImageWithColor: (UIColor*)color { CGRect rect=CGRec…

2015-11-20 193

#Objective-C
隐藏或显示工具栏

// 视图控制器重写这个方法即可. - (BOOL)prefersStatusBarHidden { return YES; }

2015-11-18 988

#Objective-C
UIlabel多行文字自动换行 (自动折行)

UIView *footerView = [[UIView alloc]initWithFrame:CGRectMake(10, 100, 300, 180)]; UILabel …

2015-11-17 501

#Objective-C
在iOS中实现类似安卓自动消失提示框

+(void)showMessage:(NSString *)message { UIWindow * window = [UIApplication sharedApplicat…

2015-11-12 199

#Objective-C
微博头视图下拉放大效果 tableview头视图下拉放大效果

#import "TableViewController.h" @interface TableViewController () { UIView *_headerView; U…

2015-11-11 921

#Objective-C
__block __weak在回调里面引用对象 和修改对象

#define WS(weakSelf) __weak __typeof(&*self)weakSelf = self @interface ScanQCodeContro…

2015-11-10 368

#Objective-C
从网络下载图片,保存,并用 UIImageView 从保存中显示

//从网络下载图片 -(UIImage *) getImageFromURL:(NSString *)fileURL { NSLog(@"执行图片下载函数");…

2015-11-10 705

#Objective-C
iOS QQ列表效果实现

效果如下: 实现效果主要分为两个部分: 数据模型 tableview 要实现tableview需要实现DataSource和delegate datasource主要作用在于显示什…

2015-11-10 879

#Objective-C
iOS关于Core Image 转自http://www.cocoachina.com/bbs/read.php?tid=82

iOS5新特性:强大的Core Image(教你做自己的美图秀秀)) iOS5给我们带来了很多很好很强大的功能和API。Core Image就是其中之一,它使我们很容易就能处理图片…

2015-11-08 584

#Objective-C
iOS点击发送短信按钮跳转到手机短信界面实现发送短信

#import "ViewController.h" @interface ViewController () @end @implementation Vie…

2015-11-08 244

#Objective-C
iOS几行代码让界面变圆角

原文  http://www.jianshu.com/p/f6587baafb3c   最近有一些比较流行的应用,界面都是圆角的。比如Memopad,Pinte…

2015-11-08 588
1 3 4 5 6 7 53