〈extreme.framework/EFBaseViewController.h〉
基于 EFBaseViewController的控制器赋予了众多基于 UIViewController的控制器所不具备的能力。
1. 状态栏与导航栏[这是什么?]
2.0~[这是什么?]
1 | /** |
1.5~
1 |
|
1.5
1 | /** |
2. 控制器间的链接
1.5~
1 | /** |
1.5
1 | /** |
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 |
|
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 | /** |
1.5
-requestLocationSuccess:failure:
定位请求成功或者失败时进行一些处理。
参数:
successHandler 定位成功回调 successHandler 非必填
failureHandler 定位失败回调 failureHandler 非必填
返回值:
无
1 | /** |
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 |
|
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 |
|
5. 录音
2.0~
-privacyMicrophoneAuthorizationWithCompletionHandler:
获取隐私-麦克风权限。(Authorization for privacy use microphone.)
参数:
completionHandler 操作回调 completionHandler 非必填
返回值:
无
1 |
|
6. 获得数据
2.0~
1 |
|
1.5~
1 |
|
7. 无数据显示
2.0~
-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 |
|
8. 刷新与分页
2.0~
1 |
|
9. 聚焦到当前输入位置
2.0~
1 |
|
相关
更新内容
- 新增使用位置更多方法。
- 新增获取照片更多方法。
- 新增可单独调用的获取录音权限方法。
- 新增支持嵌入的 table view。
- 新增无数据提示。
- 新增支持刷新与分页。
- 新增支持输入聚焦。
- 相关链接调整。
- 新增相关示例。
- 更新了描述内容。