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

objective-c 628

#Objective-C
iOS实现连拍功能

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UII…

2015-01-20 895

#Objective-C
objective-c产生随机数的方法

//arc4random() 比较精确不需要生成随即种子 //通过arc4random() 获取0到x-1之间的整数的代码如下: int value = arc4random() …

2015-01-20 419

#Objective-C
iOS将时间戳转换成时间字符串类的方法代码

//将date时间戳转变成时间字符串 //@paaram date 用于转换的时间 //@param formatString 时间格式(yyyy-MM-dd HH:mm:ss) …

2015-01-20 507

#Objective-C
自定义UITableView折叠效果

类似于QQ的那种折叠效果。只刷新点击的折叠行。不加载所有数据源。 测试环境Xcode4.3.3+SDK5.1兼容ios6 // // MyTableViewController.m…

2015-01-20 778

#Objective-C
iOS相应触屏事件代码

//在一个函数里面(初始化等)里面添加要识别触摸事件的范围 infoView=[[UIView alloc] initWithFrame:CGRectMake(20, 100,22…

2015-01-20 544

#Objective-C
iOS文件操作的代码

NSData *condata = responseObject; //设置编码格式,这种编码格式可以正常读取中文 NSStringEncoding enc = CFStringC…

2015-01-20 288

#Objective-C
iOS应用中网络等待Loading的实现方法

UIWebView加载Loading…两种方法 第一种方法:使用UIView and UIActivityIndicatorView //创建UIWebView Web…

2015-01-20 588

#Objective-C
iOS视图翻页过渡效果

CGContextRef context = UIGraphicsGetCurrentContext(); [UIView beginAnimations:nil context:…

2015-01-20 532

#Objective-C
iOS通过http post上传图片

//ASIFormDataRequest方式 POST上传图片 -(NSDictionary *)addPicWithDictionary:(NSDictionary *)suge…

2015-01-20 891

#Objective-C
iOS常用的几个动画代码

使用前 需引入QuartzCore.framework, 并在相关文件中加入 #import "QuartzCore/QuartzCore.h" 定义 shak…

2015-01-20 663

#Objective-C
iOS应用发送SMS短消息代码

//Import the MessageUI Framework into your project and //#import the header file into the …

2015-01-20 876

#Objective-C
iOS对图像进行压缩代码

- (UIImage*)scaleFromImage:(UIImage*)image scaledToSize:(CGSize)newSize { CGSize imageSize…

2015-01-20 316
1 42 43 44 45 46 53