排序
IOS关闭键盘的方法
首先输入完成后按键盘上的done关闭键盘 首先在Interface Builder中选择TextFields,然后在Text Field Attributes中找到Text Input Traits,选择Return Key为done。OK 定义方法 - (IBAction) tex...
ios下移动文件方法汇总
这段objective c代码用于移动指定路径下的文件 if ([fileManager copyItemAtPath:@'FilePath1' toPath:@'FilePath2' error:NULL]) { NSLog(@'Copied successfully'); } 方法二: 使用 NSFileM...
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开发中时间转换的方法集锦
在开发iOS程序时,有时候需要将时间格式调整成自己希望的格式,这个时候我们可以用NSDateFormatter类来处理。 例如: //实例化一个NSDateFormatter对象 NSDateFormatter *dateFormatter = [[NSD...