排序
ios下移动文件方法汇总
这段objective c代码用于移动指定路径下的文件 if ([fileManager copyItemAtPath:@'FilePath1' toPath:@'FilePath2' error:NULL]) { NSLog(@'Copied successfully'); } 方法二: 使用 NSFileM...
IOS关闭键盘的方法
首先输入完成后按键盘上的done关闭键盘 首先在Interface Builder中选择TextFields,然后在Text Field Attributes中找到Text Input Traits,选择Return Key为done。OK 定义方法 - (IBAction) tex...
iOS利用AFNetworking3.0——实现文件断点下载
利用AFNetworking 3.0可以实现文件的断点下载。主要分以下几步: 1. 创建文件管理器,获取下载文件信息 NSFileManager *fileManager = [NSFileManager defaultManager]; NSString *downloadPath =...
ios通过按钮点击异步加载图片
比较原始的方法: AsyncImageView.h: #import <UIKit/UIKit.h> @interface AsyncImageView : UIView { NSURLConnection* connection; NSMutableData* data; } - (void)loadImageFromURL:(...
iOS 获取公历、农历日期的年月日的实例代码
iOS中可以通过Calendar类获取公历和农历日期信息。示例代码如下: // 获取公历年月日 let date = Date() let calendar = Calendar.current let year = calendar.component(.year, from: date) le...
IOS中UIWebView加载Loading的实现方法
第一种方法:使用UIView and UIActivityIndicatorView //创建UIWebView WebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 44, 320, 400)]; [WebView setUserInteractionEnabled:NO]; ...
ios开发中时间转换的方法集锦
在开发iOS程序时,有时候需要将时间格式调整成自己希望的格式,这个时候我们可以用NSDateFormatter类来处理。 例如: //实例化一个NSDateFormatter对象 NSDateFormatter *dateFormatter = [[NSD...