0%

创建一个基于 BaseDataModel的模型 Model based on BaseDataModel

1. 基本模型 Normal model

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@interface User : BaseDataModel

@property (copy, nonatomic, nullable) NSString<Optional> *nick;
@property (strong, nonatomic, nullable) NSNumber<Optional> *age;

@end


@implementation User

+(JSONKeyMapper*)keyMapper
{
return [[JSONKeyMapper alloc] initWithModelToJSONDictionary:@{
@"dataID": @"ID", // dataID用作ID
@"dataName": @"name" // dataName用作name
}];
}

@end

// Test
NSDictionary *dictionary = @{@"ID": @59,
@"name": [NSNull null],
@"nick": @"Tony",
@"age": [NSNull null],
@"offline": @true};

NSError *error;
User *model = [[User alloc] initWithDictionary:dictionary error:&error];
if (model) {
LOG_FORMAT(@"%@", STRING_FORMAT(@"model: %@", model));
}
阅读全文 »

用类似”#FF0000”初始化 UIColor With Hex String

1
2
3
4
5
6
7
LOG_FORMAT(@"1: %@", COLOR_HEXSTRING(@"#FFFFFF"));
UIColor *colorWithAlpha = COLOR_HEXSTRING(@"#80FFFFFF");
LOG_FORMAT(@"2: %@", colorWithAlpha);
colorWithAlpha = COLOR_HEXSTRING_ALPHA(@"#FFFFFF", 0.5);
LOG_FORMAT(@"3: %@", colorWithAlpha);
LOG_FORMAT(@"4: %@", HEXSTRING_COLOR([UIColor whiteColor]));
LOG_FORMAT(@"5: %@", HEXSTRING_COLOR(colorWithAlpha));

输出结果

阅读全文 »

编码为 base64字符串和解码为 NSData Base64 Encoding and Decoding

1
2
3
4
5
6
7
NSString *string = @"www.xfmwk.com";
NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
NSString *base64EncodedString = [EFUtils dataBase64EncodingWith:data];
NSData *dataBase64 = [EFUtils dataBase64DecodingFrom:base64EncodedString];
LOG_FORMAT(@"1: %@", base64EncodedString);
LOG_FORMAT(@"2: %@", dataBase64);
LOG_FORMAT(@"3: %@", [[NSString alloc] initWithData:dataBase64 encoding:NSUTF8StringEncoding]);

输出结果

阅读全文 »

日期格式字符串格式化 Date fomartter

1
2
3
4
5
6
NSDate *date = [NSDate date];
LOG_FORMAT(@"1: %@", [EFUtils stringFromDate:date]);
LOG_FORMAT(@"2: %@", [EFUtils stringFromDate:date dateTime:YES]);
LOG_FORMAT(@"3: %@", [EFUtils stringFromDate:date dateFormat:@"M月d日ah时m分"]);
LOG_FORMAT(@"4: %@", [EFUtils stringFromDateFormattedString:@"2020-8-30" dateFormat:@"yyyy年MM月dd日"]);
LOG_FORMAT(@"5: %@", [EFUtils stringFromDateFormattedString:@"2020-8-30 10:00:00" dateTime:YES dateFormat:@"MM月dd日HH时mm分"]);

输出结果

阅读全文 »

转换 Conversions

+stringFromDictionary:withKey:

字典中指定键值转换为字符串。(String value from the key value in a dictionary.)

1
2
3
4
5
6
7
8
9
10
11
NSDictionary *dictionary = @{@"ID": @59,
@"name": @"James",
@"age": [NSNull null],
@"offline": @true};
LOG_FORMAT(@"1: %@", [EFUtils stringFromDictionary:dictionary withKey:@"ID"]);
LOG_FORMAT(@"2: %@", [EFUtils stringFromDictionary:dictionary withKey:@"name"]);
LOG_FORMAT(@"3: %@", [EFUtils stringFromDictionary:dictionary withKey:@"age"]);

if (![EFUtils stringFromDictionary:dictionary withKey:@"age"]) { // age值不存在
// do some thing
}

+boolValueFromNumber:

将NSNumber转换为BOOL。(Bool value from a NSNumber object.)

1
2
3
4
5
6
7
8
9
NSDictionary *dictionary = @{@"ID": @59,
@"name": @"James",
@"age": [NSNull null],
@"offline": @true};
LOG_FORMAT(@"%d", [EFUtils boolValueFromNumber:dictionary[@"offline"]]);

if ([EFUtils boolValueFromNumber:dictionary[@"offline"]]) { // offline
// do some thing
}

+JSONToString:

JSON(字典或数组)转 JSON字符串。(JSON to string.)

1
2
3
4
5
NSDictionary *dictionary = @{@"ID": @59,
@"name": @"James",
@"age": @21,
@"offline": @true};
LOG_FORMAT(@"%@", [EFUtils JSONToString:dictionary]);

+stringToJSON:

JSON字符串转 JSON(字典或数组)。(String to JSON.)

1
2
NSString *string = @"{\"ID\":59, \"name\":\"James\", \"age\":21, \"offline\":1}";
LOG_FORMAT(@"%@", [EFUtils stringToJSON:string]);

下一期带来更多转换的示例。

相关

更新内容

相关链接调整。

验证值是否合法 Validate the value

+objectIsNilOrNull:

对象判空。(Validate the object is nil or null.)

1
2
3
4
5
6
7
8
9
10
NSObject *object; // Nil
LOG_FORMAT(@"1: %d", [EFUtils objectIsNilOrNull:object]);
object = [NSNull null]; // Null
LOG_FORMAT(@"2: %d", [EFUtils objectIsNilOrNull:object]);
object = [NSObject alloc]; // Object alloc
LOG_FORMAT(@"3: %d", [EFUtils objectIsNilOrNull:object]);

if (![EFUtils objectIsNilOrNull:object]) { // 不为空
// do some thing here
}

+stringIsNilOrNullOrEmpty:

字符串判空。(Validate the string is nil or null or empty.)

1
2
3
4
5
6
7
8
9
10
NSString *string; // Nil
LOG_FORMAT(@"1: %d", [EFUtils stringIsNilOrNullOrEmpty:string]);
string = (NSString *)[NSNull null]; // Null
LOG_FORMAT(@"2: %d", [EFUtils stringIsNilOrNullOrEmpty:string]);
string = @""; // String with a empty string
LOG_FORMAT(@"3: %d", [EFUtils stringIsNilOrNullOrEmpty:string]);

if (![EFUtils stringIsNilOrNullOrEmpty:string]) { // 不为空
// do some thing here
}
阅读全文 »

Supporting Files/EFFMDBTool/EFFMDBTool.h

一个简单易用的基于 FMDB的sqlite数据库工具。

一般 [这是什么?]

2.0~[这是什么?]

+sharedTool

创建 MDB 实例,如果数据库不存在会自动创建,数据库名 MDBName 在 AppConfig 配置。(Get instance of EFFMDBTool, create database named in AppConfig if not exist.)

参数:

返回值:

EFFMDBTool EFFMDBTool实例,不为空。

-mdb

FMDatabase 实例,通过方法获取。(Get instance of FMDatabase with method style.)

参数:

返回值:

FMDatabase FMDatabase实例,不为空。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
FMDatabase 实例
*/
@property (strong, nonatomic, nonnull) FMDatabase *mdb;

/**
创建 MDB 实例,如果数据库不存在会自动创建,数据库名 MDBName 在 AppConfig 配置。(Get instance of EFFMDBTool, create database named in AppConfig if not exist.)

@return EFFMDBTool 实例
*/
+ (instancetype)sharedTool;

/**
FMDatabase 实例,通过方法获取。(Get instance of FMDatabase with method style.)

@return FMDatabase 实例
*/
- (FMDatabase *)mdb;

[这是什么?]

阅读全文 »

Supporting Files/EFUIKit/EFModalDialog/DaySelector_VC.h

提供日期时间选择的对话框。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
日期选择器,时区为 "Asia/Hong_Kong"。(Date picker with time zone named "Asia/Hong_Kong".)
*/
@property (weak, nonatomic, nullable) IBOutlet UIDatePicker *datePicker;
/**
日期选择器回调,返回选择的日期时间戳和 UIDatePicker。(OK Callback handler, get the date picker and the time interval since 1970 of day time that you selected.)
*/
@property (strong, nonatomic, nonnull) void(^OKHandler)(NSUInteger ti, UIDatePicker *_Nonnull datePicker);

/**
用于在显示前初始化日期选择器。(Show the day you get on the date picker.)

@param date 初始日期
*/
- (void)initWithDate:(NSDate *_Nonnull)date;
/**
用于在显示前初始化日期时间选择器,可选显示时间。(Show the day time you get on the date picker.)

@param date 初始日期
@param showTime 是否显示时间
*/
- (void)initWithDate:(NSDate *_Nonnull)date showTime:(BOOL)showTime;
/**
用于在显示前初始化日期时间选择器,可设定上下限,可选显示时间。(Show the day time you get on the date picker, there is a rang for your select.)

@param date 初始日期
@param minimumDate 最小日期
@param maximumDate 最大日期
@param showTime 是否显示时间
*/
- (void)initWithDate:(NSDate *_Nonnull)date minimumDate:(NSDate *_Nullable)minimumDate maximumDate:(NSDate *_Nullable)maximumDate showTime:(BOOL)showTime;

相关

更新内容

  1. 结构调整,从核心框架移出。
  2. 初始化日期显示的更多方法。
  3. 相关链接调整。
  4. 更新了描述内容。

Supporting Files/EFUIKit/EFModalDialog/LevelModel.h

提供两级的数据模型。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@interface LevelTwoModel : BaseDataModel

@end

@protocol LevelTwoModel <NSObject>

@end


@interface LevelOneModel : BaseDataModel

/**
二级数据
*/
@property (strong, nonatomic, nullable) NSArray<LevelTwoModel, Optional> *levelTwo_array;

@end

相关

更新内容

  1. 结构调整,从核心框架移出。
  2. 相关链接调整。