0%

〈extreme.framework/EFBaseTableViewController.h〉

extreme.framework/EFBaseTableViewController.h〉

基于 EFBaseTableViewController的控制器赋予了众多基于 UITableViewController的控制器所不具备的能力。

1. 状态栏与导航栏[这是什么?]

2.0~[这是什么?]

1
2
3
4
5
6
7
8
9
/**
自定义返回事件回调。(Custom back callback handler use block.)
*/
@property (strong, nonatomic, nullable) void(^customBackHandler)(id _Nonnull sender);

/**
自定义取消事件回调。(Custom cancel callback handler use block.)
*/
@property (strong, nonatomic, nullable) void(^customCancelHandler)(id _Nonnull sender);

[这是什么?]

1.5~

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
#pragma mark - 状态栏与导航栏 StatusBar and NavigationBar
/**
状态栏是否隐藏,默认不启用。 (NO as default.)
*/
@property (assign, nonatomic) BOOL statusBarHidden;

/**
导航栏样式,EFBarStyle于 EFConfig中定义,默认使用 EFBarStyleDefault——等同于 UIBarStyleDefault。 (Set the navigationBarStyle as EFBarStyle defined in EFConfig, EFBarStyleDefault as default, same as UIBarStyleDefault.)
*/
@property (assign, nonatomic) EFBarStyle navigationBarStyle;
/**
直接访问导航栏(Access the navigation bar directly.)
*/
@property (strong, nonatomic, readonly, nullable) EFNavigationBar *navigationBar;

/**
使用自定义返回,默认使用 extreme.bundle中名为“back”的图像,默认不启用。(Use custom back on the navigation bar, NO as default, default image as image named "back" in extreme.bundle.)
*/
@property (assign, nonatomic, getter=isUseCustomBack) BOOL useCustomBack;
/**
可在使用自定义返回时自定义返回按钮。(For custom appearance of the back button when use custom back.)
*/
@property (strong, nonatomic, nullable) UIBarButtonItem *customBack_barButtonItem;

/**
可在外部调用时用于自定义取消按钮。(For custom appearance of the cancel button when present modally.)
*/
@property (strong, nonatomic, nullable) UIBarButtonItem *customCancel_barButtonItem;

1.5

1
2
3
4
5
6
7
8
9
/**
自定义返回事件回调。(Custom back callback use block.)
*/
@property (strong, nonatomic, nullable) void(^tapCustomBack)(id _Nonnull sender);

/**
自定义取消事件回调。(Custom cancel callback use block.)
*/
@property (strong, nonatomic, nullable) void(^tapCustomCancel)(id _Nonnull sender);

2. 控制器间的链接

1.5~

1
2
3
4
/**
导航中的上一个控制器。(The previous view controller in navigation controller.)
*/
@property (strong, nonatomic, nonnull) EFBaseViewController *previousViewController;

1.5

1
2
3
4
/**
被嵌入时,嵌入容器的控制器。(The controller who embed this controller.)
*/
@property (strong, nonatomic, nonnull) EFBaseViewController *containerViewController;

3. 定位

2.0~

- requestLocationTemporaryFullAccuracyAuthorizationWithPurposeKey:authorizedHandler:deniedHandler: API_AVAILABLE(ios(14))

未开启精确定位,需要临时请求开启时调用(iOS 14及更新系统)。(If full accuracy location disabled, request full accuracy location temporary, first available on iOS 14.)

参数:

purposeKey 权限申请弹框显示的功能说明所属的 Key NSString 必填
AuthorizedHandler 获得精确定位临时访问权限回调 AuthorizedHandler 非必填
DeniedHandler 精确定位临时访问权限被拒回调 DeniedHandler 非必填

返回值:

-requestLocationSuccessHandler:failureHandler:

发起请求定位。 (Just request location.)

参数:

locationSuccessHandler 定位成功回调 LocationSuccessHandler 非必填
locationFailureHandler 定位失败回调 LocationFailureHandler 非必填

返回值:

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
33
34
35
36
37
38
39
#pragma mark - 使用位置 Use location
/**
获得完全访问权限回调。(Callback handler use block, for complete authorization.)
*/
typedef void (^_Nullable AuthorizedHandler)(void);
/**
访问权限被拒回调。(Callback handler use block, for authorization denied.)
*/
typedef void (^_Nullable DeniedHandler)(void);
/**
发起请求位置成功回调。(Success callback handler use block when request location.)

@param locationManager locationManager实例
*/
typedef void (^_Nullable LocationSuccessHandler)(CLLocationManager *_Nonnull locationManager);
/**
发起请求位置失败回调。(Failure callback handler use block when request location.)

@param locationManager locationManager实例
@param authorizationStatus 位置授权状态
*/
typedef void (^_Nullable LocationFailureHandler)(CLLocationManager *_Nonnull locationManager, CLAuthorizationStatus authorizationStatus);

/**
未开启精确定位,需要临时请求开启时调用。 (If full accuracy location disabled, request full accuracy location temporary.)

@param purposeKey 权限申请弹框显示的功能说明所属的 Key
@param authorizedHandler 获得精确定位临时访问权限回调
@param deniedHandler 精确定位临时访问权限被拒回调
*/
- (void)requestLocationTemporaryFullAccuracyAuthorizationWithPurposeKey:(NSString *_Nonnull)purposeKey authorizedHandler:(AuthorizedHandler)authorizedHandler deniedHandler:(DeniedHandler)deniedHandler API_AVAILABLE(ios(14));

/**
发起请求定位。 (Just request location.)

@param locationSuccessHandler 成功回调
@param locationFailureHandler 失败回调
*/
- (void)requestLocationSuccessHandler:(LocationSuccessHandler)locationSuccessHandler failureHandler:(LocationFailureHandler)locationFailureHandler;

1.5~

-requestLocationAuthorization:

先在使用位置的基于 EFBaseViewController控制器中的 -viewDidLoad 调用以获取使用位置授权。(Use -requestLocationAuthorization: on the -viewDidLoad in the EFBaseViewController based controller first who requested location.)

参数:

whenInUse 何时允许定位, YES 使用App期间 NO 总是 BOOL

返回值:

1
2
3
4
5
6
/**
先在使用位置的基于 EFBaseViewController控制器中的 -viewDidLoad 调用以获取使用位置授权。(Use -requestLocationAuthorization: on the -viewDidLoad in the EFBaseViewController based controller first who requested location.)

@param whenInUse Request location whenInUse or always.
*/
- (void)requestLocationAuthorization:(BOOL)whenInUse;

1.5

-requestLocationSuccess:failure:

定位请求成功或者失败时进行一些处理。

参数:

successHandler 定位成功回调 successHandler 非必填
failureHandler 定位失败回调 failureHandler 非必填

返回值:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
发起请求位置成功回调。(Success callback use block when request location.)

@param locationManager locationManager实例
*/
typedef void(^_Nullable successHandler)(CLLocationManager *_Nonnull locationManager);
/**
发起请求位置失败回调。(Failure callback use block when request location.)

@param locationManager locationManager实例
@param authorizationStatus 位置授权状态
*/
typedef void(^_Nullable failureHandler)(CLLocationManager *_Nonnull locationManager, CLAuthorizationStatus authorizationStatus);

/**
发起请求位置。 (Just request location.)

@param successHandler 成功回调
@param failureHandler 失败回调
*/
- (void)requestLocationSuccess:(successHandler)successHandler failure:(failureHandler)failureHandler;

4. 拍照与选取照片

2.0~

-privacyCameraAuthorizationWithCompletionHandler:

获取隐私-相机权限。(Authorization for privacy use camera.)

参数:

completionHandler 操作回调 completionHandler 非必填

返回值:

-privacyPhotoLibraryAuthorizationWithCompletionHandler:

获取隐私-照片图库权限(iOS13或更早系统)。(Authorization for privacy use photo library, prior to iOS 14.)

参数:

completionHandler 操作回调 completionHandler 非必填

返回值:

-privacyPhotoLibraryAuthorizationWithLimitedPhotosHandler:authorizedHandler: API_AVAILABLE(ios(14))

获取隐私-照片图库权限(iOS14及更新系统)。(Authorization for privacy use photo library, iOS 14 and future versions.)

参数:

limitedPhotosHandler 获得受限照片权限回调 LimitedPhotosHandler 非必填
authorizedHandler 获得照片图库完全访问权限回调 AuthorizedHandler 非必填

返回值:

-presentLimitedLibraryPicker API_AVAILABLE(ios(14))

弹出照片图库权限选择照片界面(iOS14及更新系统)。(Select the photos for limited photos authorization, first available on iOS 14.)

参数:

返回值:

-showPhotoPickerWithMessage:

显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

参数:

message 提示信息 NSString 非必填

返回值:

-showPhotoPickerWithMessage:isCameraDeviceFront:

同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

参数:

message 提示信息 NSString 非必填
isCameraDeviceFront YES 前置摄像头 NO 后置摄像头 BOOL

返回值:

-showPhotoPickerNoPhotoSelectionLimitWithMessage: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填

返回值:

-showPhotoPickerWithMessage:photoSelectionLimit: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
photoSelectionLimit 选择照片的数量限制 NSUInteger

返回值:

-showPhotoPickerWithMessage:sourceView:

显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

参数:

message 提示信息 NSString 非必填
sourceView 源视图实例,用于iPad UIView 非必填

返回值:

-showPhotoPickerWithMessage:isCameraDeviceFront:sourceView:

同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

参数:

message 提示信息 NSString 非必填
isCameraDeviceFront YES 前置摄像头 NO 后置摄像头 BOOL
sourceView 源视图实例,用于 iPad UIView 非必填

返回值:

-showPhotoPickerNoPhotoSelectionLimitWithMessage:sourceView: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
sourceView 源视图实例,用于iPad UIView 非必填

返回值:

-showPhotoPickerWithMessage:photoSelectionLimit:sourceView: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
photoSelectionLimit 选择照片的数量限制 NSUInteger
sourceView 源视图实例,用于iPad UIView 非必填

返回值:

-showPhotoPickerWithMessage:completionHandler:

显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

参数:

message 提示信息 NSString 非必填
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerWithMessage:isCameraDeviceFront:completionHandler:

同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

参数:

message 提示信息 NSString 非必填
isCameraDeviceFront YES 前置摄像头 NO 后置摄像头 BOOL
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerNoPhotoSelectionLimitWithMessage:completionHandler: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerWithMessage:photoSelectionLimit:completionHandler: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
photoSelectionLimit 选择照片的数量限制 NSUInteger
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerWithMessage:sourceView:completionHandler:

显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

参数:

message 提示信息 NSString 非必填
sourceView 源视图实例,用于iPad UIView 非必填
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerWithMessage:isCameraDeviceFront:sourceView:completionHandler:

同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

参数:

message 提示信息 NSString 非必填
isCameraDeviceFront YES 前置摄像头 NO 后置摄像头 BOOL
sourceView 源视图实例,用于 iPad UIView 非必填
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerNoPhotoSelectionLimitWithMessage:sourceView:completionHandler: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
sourceView 源视图实例,用于iPad UIView 非必填
completionHandler 操作回调 completionHandler 非必填

返回值:

-showPhotoPickerWithMessage:photoSelectionLimit:sourceView:completionHandler: API_AVAILABLE(ios(14))

显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set, first available on iOS 14.)

参数:

message 提示信息 NSString 非必填
photoSelectionLimit 选择照片的数量限制 NSUInteger
sourceView 源视图实例,用于iPad UIView 非必填
completionHandler 操作回调 completionHandler 非必填

返回值:

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#pragma mark - 获取照片 Photo picker
/**
操作回调。(Callback handler use block.)
*/
typedef void (^_Nullable CompletionHandler)(void);
/**
获得受限照片权限回调。(Callback handler use block, for limited photos authorization.)
*/
typedef void (^_Nullable LimitedPhotosHandler)(void);
/**
获取隐私-相机权限。(Authorization for privacy use camera.)

@param completionHandler 操作回调
*/
- (void)privacyCameraAuthorizationWithCompletionHandler:(CompletionHandler)completionHandler;
/**
获取隐私-照片图库权限(iOS13或更早系统)。(Authorization for privacy use photo library, prior to iOS 14.)

@param completionHandler 操作回调
*/
- (void)privacyPhotoLibraryAuthorizationWithCompletionHandler:(CompletionHandler)completionHandler;
/**
获取隐私-照片图库权限(iOS14及更新系统)。(Authorization for privacy use photo library, iOS 14 and future versions.)

@param limitedPhotosHandler 获得受限照片权限回调
@param authorizedHandler 获得照片图库完全访问权限回调
*/
- (void)privacyPhotoLibraryAuthorizationWithLimitedPhotosHandler:(LimitedPhotosHandler)limitedPhotosHandler authorizedHandler:(AuthorizedHandler)authorizedHandler API_AVAILABLE(ios(14));
/**
弹出受限照片权限选择照片界面。(Select the photos for limited photos authorization.)
*/
- (void)presentLimitedLibraryPicker API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

@param message 提示信息
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message;
/**
同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

@param message 提示信息
@param isCameraDeviceFront YES 前置摄像头 NO 后置摄像头
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message isCameraDeviceFront:(BOOL)isCameraDeviceFront;
/**
显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection.)

@param message 提示信息
*/
- (void)showPhotoPickerNoPhotoSelectionLimitWithMessage:(NSString *_Nullable)message API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set.)

@param message 提示信息
@param photoSelectionLimit 选择照片的数量限制
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message photoSelectionLimit:(NSUInteger)photoSelectionLimit API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

@param message 提示信息
@param sourceView 源视图实例,用于 iPad
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message sourceView:(UIView *_Nullable)sourceView;
/**
同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

@param message 提示信息
@param isCameraDeviceFront YES 前置摄像头 NO 后置摄像头
@param sourceView 源视图实例,用于 iPad
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message isCameraDeviceFront:(BOOL)isCameraDeviceFront sourceView:(UIView *_Nullable)sourceView;
/**
显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection.)

@param message 提示信息
@param sourceView 源视图实例,用于 iPad
*/
- (void)showPhotoPickerNoPhotoSelectionLimitWithMessage:(NSString *_Nullable)message sourceView:(UIView *_Nullable)sourceView API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set.)

@param message 提示信息
@param photoSelectionLimit 选择照片的数量限制
@param sourceView 源视图实例,用于 iPad
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message photoSelectionLimit:(NSUInteger)photoSelectionLimit sourceView:(UIView *_Nullable)sourceView API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

@param message 提示信息
@param completionHandler 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message completionHandler:(CompletionHandler)completionHandler;
/**
同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

@param message 提示信息
@param isCameraDeviceFront YES 前置摄像头 NO 后置摄像头
@param completionHandler 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message isCameraDeviceFront:(BOOL)isCameraDeviceFront completionHandler:(CompletionHandler)completionHandler;
/**
显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection.)

@param message 提示信息
@param completionHandler 操作回调
*/
- (void)showPhotoPickerNoPhotoSelectionLimitWithMessage:(NSString *_Nullable)message completionHandler:(CompletionHandler)completionHandler API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set.)

@param message 提示信息
@param photoSelectionLimit 选择照片的数量限制
@param completionHandler 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message photoSelectionLimit:(NSUInteger)photoSelectionLimit completionHandler:(CompletionHandler)completionHandler API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,仅支持选择一张照片。 (Show the camera/photo library selector, photo single selection.)

@param message 提示信息
@param sourceView 源视图实例,用于 iPad
@param completionHandler 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message sourceView:(UIView *_Nullable)sourceView completionHandler:(CompletionHandler)completionHandler;
/**
同显示选择拍照、选取照片,仅支持选择一张照片,可设定拍照默认开启前置还是后置摄像头。(Same as the selector: -showPhotoPickerWithMessage:sourceView:completionHandler:, except: you may set front or rear camera as default when camera is on.)

@param message 提示信息
@param isCameraDeviceFront YES 前置摄像头 NO 后置摄像头
@param sourceView 源视图实例,用于 iPad
@param completionHandler 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message isCameraDeviceFront:(BOOL)isCameraDeviceFront sourceView:(UIView *_Nullable)sourceView completionHandler:(CompletionHandler)completionHandler;
/**
显示选择拍照、选取照片,支持选择任意张照片。 (Show the camera/photo library selector, no limited photo multi selection.)

@param message 提示信息
@param sourceView 源视图实例,用于 iPad
@param completionHandler 操作回调
*/
- (void)showPhotoPickerNoPhotoSelectionLimitWithMessage:(NSString *_Nullable)message sourceView:(UIView *_Nullable)sourceView completionHandler:(CompletionHandler)completionHandler API_AVAILABLE(ios(14));
/**
显示选择拍照、选取照片,支持选择最多限定张数的照片。 (Show the camera/photo library selector, limited photo multi selection, maximum selection as you set.)

@param message 提示信息
@param photoSelectionLimit 选择照片的数量限制
@param sourceView 源视图实例,用于 iPad
@param completionHandler 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message photoSelectionLimit:(NSUInteger)photoSelectionLimit sourceView:(UIView *_Nullable)sourceView completionHandler:(CompletionHandler)completionHandler API_AVAILABLE(ios(14));
/**
获取照片回调。(Photo picker callback handler use block.)
*/
@property (strong, nonatomic, nullable) void(^photoPickerFinishHandler)(id _Nonnull photoPicker, NSArray<UIImage *> *_Nonnull selectPhotos);

1.5

-privacyCameraAuthorizationWithCompletion:

通常用来调起系统相机请求权限对话框。

参数:

completion 代码块执行完进行一些处理 completion 非必填

返回值:

-privacyPhotoLibraryAuthorizationWithCompletion:

通常用来调起系统照片图库请求权限对话框。

参数:

completion 操作执行完进行一些处理 completion 非必填

返回值:

-showPhotoPickerWithMessage:sourceView:completion:

调起显示选择拍照、选取照片选项。通过执行获取照片回调来进行最终的处理操作。

参数:

message 通常用于要显示的功能描述 NSString 非必填
sourceView 调起者,主要用于iPad中在何处显示选项 UIView 必填
completion 操作执行完进行一些处理 completion 非必填

返回值:

-showPhotoPickerWithMessage:isFront:sourceView:completion:

调起显示选择拍照、选取照片选项,可设定拍照默认开启前置还是后置摄像头。通过执行获取照片回调来进行最终的处理操作。

参数:

message 通常用于要显示的功能描述 NSString 非必填
isFront YES 前置摄像头 NO 后置摄像头 BOOL
sourceView 调起者,主要用于iPad中在何处显示选项 UIView 必填
completion 操作执行完进行一些处理 completion 非必填

返回值:

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
33
34
35
36
37
38
#pragma mark - 获取照片 Photo picker
/**
ImagePicker 操作回调,适用于任一操作:拍照、选取照片以及取消。(ImagePicker callback use block, for each action: take a picture from camera or library or cancel.)
*/
typedef void (^_Nullable completion)(void);
/**
获取隐私-相机权限。(Authorization for privacy use camera.)

@param completion 操作回调
*/
- (void)privacyCameraAuthorizationWithCompletion:(completion)completion;
/**
获取隐私-照片权限。(Authorization for privacy use photo library.)

@param completion 操作回调
*/
- (void)privacyPhotoLibraryAuthorizationWithCompletion:(completion)completion;
/**
显示选择拍照、选取照片。 (Show the camera/photo library selector.)

@param message 提示信息
@param sourceView 源视图实例,用于iPad
@param completion 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message sourceView:(UIView *_Nonnull)sourceView completion:(completion)completion;
/**
同显示选择拍照、选取照片,可设定拍照默认开启前置还是后置摄像头。(Same as the previous selector: showPhotoPickerWithMessage:sourceView:completion:, set front or rear camera as default when camera on.)

@param message 提示信息
@param isFront YES 前置摄像头 NO 后置摄像头
@param sourceView 源视图实例,用于iPad
@param completion 操作回调
*/
- (void)showPhotoPickerWithMessage:(NSString *_Nullable)message isFront:(BOOL)isFront sourceView:(UIView *_Nonnull)sourceView completion:(completion)completion;
/**
获取照片回调。(Photo picker callback use block.)
*/
@property (strong, nonatomic, nullable) void(^photoPickerResult)(UIImagePickerController *_Nonnull imagePicker, NSDictionary *_Nonnull mediaInfo);

5. 录音

2.0~

-privacyMicrophoneAuthorizationWithCompletionHandler:
获取隐私-麦克风权限。(Authorization for privacy use microphone.)

参数:

completionHandler 操作回调 completionHandler 非必填

返回值:

1
2
3
4
5
6
7
#pragma mark - 录音是否授权
/**
获取隐私-麦克风权限。(Authorization for privacy use microphone.)

@param completionHandler 操作回调
*/
- (void)privacyMicrophoneAuthorizationWithCompletionHandler:(CompletionHandler)completionHandler;

6. 获得数据

1.5~

1
2
3
4
5
6
7
8
9
#pragma mark - API调用与数据源 HTTPRequest and manager
/**
如果调用了 HTTPTool,每一个数据任务都要都手动添加到这里。(Add every data task you've been created to the dataTasks.)
*/
@property (strong, nonatomic, nullable) NSMutableArray<NSURLSessionDataTask *> *dataTasks;
/**
数据源,一般应以基于 BaseDataModel的 model为元素。(The DataSource, element is BaseDataModel based model.)
*/
@property (strong, nonatomic, nullable) NSMutableArray *dataSource_mArray;

7. 无数据显示

1.5~

-setNoDataImageName:width:height:

自定义没有数据提示的图像文件名,以及图像宽度、高度。(Use image for no data view, and custom width/height.)

参数:

noDataImageName 图像文件名 NSString 必填
width 图像宽度 CGFloat
height 图像高度 CGFloat

返回值:

-setNoDataImageName:noDataImageExt:

自定义没有数据提示的图像文件名、扩展名,目前主要用于 gif图像,宽高默认 100。(Use gif image for no data view, width/height 100 as default.)

参数:

noDataImageName 图像文件名 NSString 必填
noDataImageExt 图像扩展名,目前支持 gif NSString 必填

返回值

-setNoDataImageName:noDataImageExt:width:height:

自定义没有数据提示的图像文件名、扩展名,以及图像宽度、高度,目前主要用于 gif图像。(Use gif image for no data view, and custom width/height.)

参数:

noDataImageName 图像文件名 NSString 必填
noDataImageExt 图像扩展名,目前支持 gif NSString 必填
width 图像宽度 CGFloat
height 图像高度 CGFloat

返回值

-setNoDataText:width:

自定义没有数据提示的文字与宽度,行数默认 1。(Use text for no data view, and custom width, 160<width<SCREEN_WIDTH, 1 line as default.)

参数:

noDataText 没有数据提示的文字 NSString 必填
width 宽度,160〈width〈SCREEN_WIDTH CGFloat

返回值:

-setNoDataText:Text lines:

自定义没有数据提示的文字与行数,宽度默认 160。(Use text for no data view, and custom lines, 0<lines<4, width 160 as default.)

参数:

noDataText 没有数据提示的文字 NSString 必填
lines 行数,0〈lines〈4 NSUInteger

返回值:

-setNoDataText:width:lines:

自定义没有数据提示的文字、宽度与行数。(Use text for no data view, and custom lines and width, 0<lines<4, 160<width<SCREEN_WIDTH.)

参数:

noDataText 没有数据提示的文字 NSString 必填
width 宽度,160〈width〈SCREEN_WIDTH CGFloat
lines 行数,0〈lines〈4 NSUInteger

返回值:

-showNoData

显示没有数据提示。

参数:

返回值:

-hideNoData

隐藏没有数据提示。

参数:

返回值:

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#pragma mark - 无数据提示 Show icon/text when no data
/**
自定义没有数据提示的图像文件名,宽高默认 100。(Use image for no data view, width/height 100 as default.)
*/
@property (copy, nonatomic, nullable) NSString *noDataImageName;
/**
自定义没有数据提示的图像文件名,以及图像宽度、高度。(Use image for no data view, and custom width/height.)

@param noDataImageName 图像文件名
@param width 图像宽度
@param height 图像高度
*/
- (void)setNoDataImageName:(NSString *_Nonnull)noDataImageName width:(CGFloat)width height:(CGFloat)height;
/**
自定义没有数据提示的图像文件名、扩展名,目前主要用于 gif图像,宽高默认 100。(Use gif image for no data view, width/height 100 as default.)

@param noDataImageName 图像文件名
@param noDataImageExt 图像扩展名,目前支持 gif (gif supported)
*/
- (void)setNoDataImageName:(NSString *_Nonnull)noDataImageName noDataImageExt:(NSString *_Nonnull)noDataImageExt;
/**
自定义没有数据提示的图像文件名、扩展名,以及图像宽度、高度,目前主要用于 gif图像。(Use gif image for no data view, and custom width/height.)

@param noDataImageName 图像文件名
@param noDataImageExt 图像扩展名,目前支持 gif (gif supported)
@param width 图像宽度
@param height 图像高度
*/
- (void)setNoDataImageName:(NSString *_Nonnull)noDataImageName noDataImageExt:(NSString *_Nullable)noDataImageExt width:(CGFloat)width height:(CGFloat)height;

/**
自定义没有数据提示的文字,宽度默认 160,行数默认 1。(Use text for no data view, width 160 as default, 1 line as default.)
*/
@property (copy, nonatomic, nullable) NSString *noDataText;
/**
自定义没有数据提示的文字与宽度,行数默认 1。(Use text for no data view, and custom width, 160<width<SCREEN_WIDTH, 1 line as default.)

@param noDataText 没有数据提示的文字
@param width 宽度,160<width<SCREEN_WIDTH
*/
- (void)setNoDataText:(NSString *_Nonnull)noDataText width:(CGFloat)width;
/**
自定义没有数据提示的文字与行数,宽度默认 160。(Use text for no data view, and custom lines, 0<lines<4, width 160 as default.)

@param noDataText 没有数据提示的文字
@param lines 行数,0<lines<4
*/
- (void)setNoDataText:(NSString *_Nonnull)noDataText lines:(NSUInteger)lines;
/**
自定义没有数据提示的文字、宽度与行数。(Use text for no data view, and custom lines and width, 0<lines<4, 160<width<SCREEN_WIDTH.)

@param noDataText 没有数据提示的文字
@param width 宽度,160<width<SCREEN_WIDTH
@param lines 行数,0<lines<4
*/
- (void)setNoDataText:(NSString *_Nonnull)noDataText width:(CGFloat)width lines:(NSUInteger)lines;

/**
显示没有数据提示。
*/
- (void)showNoData;
/**
隐藏没有数据提示。
*/
- (void)hideNoData;

8. 刷新与分页

1.5~

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
#pragma mark - 刷新与分页支持 Refresh and pageable
/**
启用原生下拉刷新,YES 启用 NO 不启用,启用后需要实现 -refresh:方法,默认不启用。(NO as default, if setup YES, override -refresh: method.)
*/
@property (assign, nonatomic, getter=isRefreshEnabled) BOOL refreshEnabled;

/**
启用下拉刷新与上拉加载更多,YES 启用 NO 不启用,启用后需要实现 -loadData和 -loadMoreDataWithPageNumber:方法,默认不启用。(NO as default, if setup YES, override -loadData and -loadMoreDataWithPageNumber: methods.)
*/
@property (assign, nonatomic, getter=isMJRefreshEnabled) BOOL MJRefreshEnabled;
/**
下拉刷新视图,默认调用 -loadData方法,可以自定义执行方法。(Perform method -loadData as default, custom a new method if you need.)
*/
@property (strong, nonatomic, nullable) MJRefreshNormalHeader *refreshHeader;
/**
上拉加载更多视图,默认调用 -loadMoreDataWithPageNumber:方法,可以自定义执行方法。(Perform method -loadMoreDataWithPageNumber: if can load more data as default, custom a new method if you need.)
*/
@property (strong, nonatomic, nullable) MJRefreshBackNormalFooter *refreshFooter;

/**
当前页码,数据加载成功后初始值为 1。(1 as default.)
*/
@property (assign, nonatomic) NSUInteger pageNumber;

/**
记录总数。
*/
@property (assign, nonatomic) NSUInteger rowsCount;

9. 聚焦到当前输入位置

2.0~

1
2
3
4
5
#pragma mark - 输入聚焦,用于自带的 tableView。(Use for it's tableView input focus.)
/**
聚焦的控件。(Setup the focusedControl if you want scroll to it. )
*/
@property (strong, nonatomic, nullable) UIView *focusedControl;

1.5~

1
2
3
4
/**
调整 tableView的边距以适应键盘,如果设置了 focusedContentOffset还将滚动到指定位置。(Adjust content insets of the tableView to fit keyboard, if the focusedContentOffset property setup, then scroll to it.)
*/
@property (assign, nonatomic) BOOL adjustTableViewEdgeInsetsToFitKeyboard;

1.5

1
2
3
4
/**
指定滚动的位置。(Setup the focusedContentOffset if you want scroll to the point.)
*/
@property (assign, nonatomic) CGPoint focusedContentOffset;

相关

更新内容

  1. 新增使用位置更多方法。
  2. 新增获取照片更多方法。
  3. 新增可单独调用的获取录音权限方法。
  4. 无数据提示新增调试图层显示。
  5. 输入聚焦简化使用,提供聚焦控件而不是聚焦控件转换后的坐标。
  6. 相关链接调整。
  7. 新增相关示例。
  8. 更新了描述内容。