0%

Supporting Files/AppConfig.h

Enum 类型枚举[这是什么?]

1.5~[这是什么?]

陈列项目业务代码中使用到的所有枚举类型变量。[这是什么?]

1
2
3
4
5
6
7
8
9
//MARK: For examples under here
//MARK: ENUM

//TODO: 1.Type demo
typedef NS_ENUM(NSInteger, type) {
type1 = 1,
type2,
type3
};

[这是什么?]

Server Config 服务器配置

1.5~

为应用服务器、文件服务器、能力服务器分别指定开发、预览、生产环境的Base URL。通过配置服务器环境常量api_env来让HTTP_URLFILE_URLABILITY_URL(见 Supporting-Files/AppMacros.h)自动获取相应环境的Base URL。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//MARK: - Server Config
//MARK: HTTPTool URLs

//TODO: 1.API
static NSString *const DEV_BaseURL = @"http://www.xfmwk.com:2000";
static NSString *const RC_BaseURL = @"";
static NSString *const PRO_BaseURL = @"";

//TODO: 2.File
static NSString *const FileDEV_BaseURL = @"";
static NSString *const FileRC_BaseURL = @"";
static NSString *const FilePRO_BaseURL = @"";

//TODO: 3.Ability
static NSString *const AbilityDEV_BaseURL = @"http://www.xfmwk.com:2000";
static NSString *const AbilityRC_BaseURL = @"";
static NSString *const AbilityPRO_BaseURL = @"";
阅读全文 »

Supporting Files/AppMacros.h

Application

1.5~[这是什么?]

快速调用 rootViewController[这是什么?]

1
#define ROOT_VC            APP_DELEGATE.window.rootViewController

[这是什么?]

1.5

快速调用 AppDelegate,从2.0版本开始 APP_DELEGATE移至 EFMacros.h。

1
2
//MARK: Application
#define APP_DELEGATE APPLICATION.delegate

服务器环境

2.0~

1
2
3
//MARK: EFFMDBTool
#define MDB_TOOL [EFFMDBTool sharedTool]
#define MDB [MDB_TOOL mdb]

1.5~

TEST_ENVAPI_ENV运用于测试包测试时会临时指定运行环境,从而忽略 api_env配置项的值。HTTP_URLFILE_URLABILITY_URL分别获取指定运行环境 API 服务器文件服务器能力服务器上接口的 URL,使用时参数 url只需填写接口相对地址。

1
2
3
4
5
6
7
//MARK: 服务器环境
#define TEST_ENV [USER_DEFAULTS integerForKey:@"Test Env"]
#define API_ENV (TEST_ENV>0 ? TEST_ENV : api_env)

#define HTTP_URL(url) FORMAT_STRING(@"%@%@", API_ENV==1 ? DEV_BaseURL : (API_ENV==2 ? RC_BaseURL : (API_ENV==3 ? PRO_BaseURL:DEV_BaseURL)), url)
#define FILE_URL(url) FORMAT_STRING(@"%@%@", API_ENV==1 ? FileDEV_BaseURL : (API_ENV==2 ? FileRC_BaseURL : (API_ENV==3 ? FilePRO_BaseURL:FileDEV_BaseURL)), url)
#define ABILITY_URL(url) FORMAT_STRING(@"%@%@", API_ENV==1 ? AbilityDEV_BaseURL : (API_ENV==2 ? AbilityRC_BaseURL : (API_ENV==3 ? AbilityPRO_BaseURL:AbilityDEV_BaseURL)), url)

Supporting Files/WebTool/ActivityBaseWebViewController.h

ActivityBaseWebViewController通常用于可互动式网页内容展示。

一般 General[这是什么?]

1.5~[这是什么?]

1
2
3
4
5
6
7
8
9
/**
要显示 Web页面的 URL
*/
@property (copy, nonatomic, nonnull) NSString *url;

/**
Web页面导航操作时是否刷新页面,如“前进”、“后退”
*/
@property (assign, nonatomic) BOOL needReloadByStep;

[这是什么?]

阅读全文 »

Supporting Files/WebTool/NormalBaseWebViewController.h

NormalBaseWebViewController通常用于普通网页内容展示。

一般 General[这是什么?]

1.5~[这是什么?]

1
2
3
4
5
6
7
8
9
/**
要显示 Web页面的 URL
*/
@property (copy, nonatomic, nonnull) NSString *url;

/**
Web页面导航操作时是否刷新页面,如“前进”、“后退”
*/
@property (assign, nonatomic) BOOL needReloadByStep;

[这是什么?]

阅读全文 »

extreme.framework/BaseDataModel.h〉

一个简单易用的基于 JSONModel的数据模型工具,基于 BaseDataModel的数据模型无需额外代码即可支持自动归解档。给你创建的自定义数据模型更多的可能性。

一般[这是什么?]

2.0~[这是什么?]

1
2
3
4
5
6
7
8
9
10
//MARK: Parser
typedef void (^_Nullable EnumerateBaseDataModelPropertiesFinish)(void);

/**
遍历基于 BaseDataModel的模型的属性 Enumerate properties of BaseDataModel based model

@param enumerateBaseDataModelPropertiesBlock EnumerateBaseDataModelProperties实例
@param finishBlock EnumerateBaseDataModelPropertiesFinish实例
*/
- (void)enumerateBaseDataModelProperties:(EnumerateBaseDataModelProperties)enumerateBaseDataModelPropertiesBlock finish:(EnumerateBaseDataModelPropertiesFinish)finishBlock;

[这是什么?]

1.5~

对于简单的基于 JSONModel的 data model,dataIDdataName已足够,可用作主键和名称(或描述),当然,上述属性不是必须的。

1
2
3
4
5
6
7
8
/**
数据标识 ID。(Data ID.)
*/
@property (strong, nonatomic, nullable) NSNumber<Optional> *dataID;
/**
数据显示名称。(Data name for show.)
*/
@property (copy, nonatomic, nullable) NSString<Optional> *dataName;

相关

更新内容

  1. 结构调整,不再位于单独的子目录。
  2. 相关链接调整。
  3. 新增相关代码示例。

extreme.framework/EFBaseNavigationController.h〉

基于 EFBaseNavigationController的导航控制器赋予了众多 UINavigationController所不具备的能力。

一般[这是什么?]

1.5~[这是什么?]

需要注意的是你不应该直接使用此处的 navigationBarStyle。使用 storyboard将两个控制器建立链接会自动设置 originalViewController而无需手动干预。[这是什么?]

1
2
3
4
5
6
7
8
9
10
/**
用于在基于 EFBaseViewController的控制器中设置导航栏样式,基于 EFMacros中的主题色 THEME_COLOR或 THEME_COLOR_LIGHT。(Setup navigation bar style in EFBaseViewController based controllers.)
注意:请勿直接在导航控制器实例上设置,而应该在基于 EFBaseViewController的控制器中的 viewWillAppear:animated:中设置类似属性。(Tips: Only setup the navigationBarStyle property on the viewWillAppear:animated: in EFBaseViewController based controllers.)
*/
@property (assign, nonatomic) EFBarStyle navigationBarStyle;

/**
外部调用发起控制器。(Modally presenter.)
*/
@property (strong, nonatomic, nonnull) EFBaseViewController *originalViewController;

[这是什么?]

相关

更新内容

  1. 相关链接调整。
  2. 更新了描述内容。

extreme.framework/EFBaseTableViewCell.h〉

适用于简单的自定义单元格。添加了自定义的选择效果,一个绑定数据模型,以及一个自定义控件,可按需自由搭配使用。

一般[这是什么?]

2.0~

因 isSelected为 UITableViewCell既有属性读者,故原 isSelected更改为 cellSelected。

1
@property (assign, nonatomic, getter=isCellSelected) BOOL cellSelected;

1.5~[这是什么?]

1
2
3
4
@property (assign, nonatomic, nullable) id dataModel;

@property (weak, nonatomic, nullable) id control;
@property (weak, nonatomic, nullable) UIImageView *select_imageView;

[这是什么?]

1.5

isSelected 已弃用。

1
@property (assign, nonatomic) BOOL isSelected;

相关

更新内容

  1. 相关链接调整。
  2. 更新了描述内容。