手机开发
-
iOS从远程地址获取图片并修改尺寸详解手机开发
NSString* imageURL = [NSString stringWithFormat: @”http://theimageurl.com/?id=%@”, [[resul…
-
iOS检查网络是否可用的代码详解手机开发
SCNetworkReachabilityFlags flags; BOOL receivedFlags; SCNetworkReachabilityRef reachabilit…
-
iOS实现圆角效果详解手机开发
UIColor *color = [UIColor colorWithRed:0.95 green:0.95 blue:0.95 alpha:0]; [aImage setBack…
-
iOS应用发送SMS短消息代码详解手机开发
//Import the MessageUI Framework into your project and //#import the header file into the …
-
iOS通过http post上传图片详解手机开发
//ASIFormDataRequest方式 POST上传图片 -(NSDictionary *)addPicWithDictionary:(NSDictionary *)suge…
-
iOS应用中网络等待Loading的实现方法详解手机开发
UIWebView加载Loading…两种方法 第一种方法:使用UIView and UIActivityIndicatorView //创建UIWebView Web…
-
iOS相应触屏事件代码详解手机开发
//在一个函数里面(初始化等)里面添加要识别触摸事件的范围 infoView=[[UIView alloc] initWithFrame:CGRectMake(20, 100,22…
-
自定义UITableView折叠效果详解手机开发
类似于QQ的那种折叠效果。只刷新点击的折叠行。不加载所有数据源。 测试环境Xcode4.3.3+SDK5.1兼容ios6 // // MyTableViewController.m…
-
iOS将时间戳转换成时间字符串类的方法代码详解手机开发
//将date时间戳转变成时间字符串 [email protected] date 用于转换的时间 [email protected] formatString…
-
在iOS App的icon左上角显示圆形背景的数字详解手机开发
– (void)applicationDidEnterBackground:(UIApplication *)application{ [[UIApplication shared…