Skip to content

Commit a1dd613

Browse files
committed
update README
1 parent be9537a commit a1dd613

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed

README.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,43 @@
11
# FLEX
2-
FLEX
2+
3+
> FLEX最新版本二进制集成包
4+
5+
> 未成功install 可注释`PodFile`描述,不影响项目运行。
6+
7+
## User
8+
9+
- PodFile
10+
11+
```
12+
pod 'FLEX', :git => 'https://github.com/Todaycoding/FLEX.git', :configurations => 'Debug'
13+
14+
```
15+
16+
- 工程代码
17+
18+
```
19+
20+
#ifdef DEBUG
21+
22+
- (void)handleFlex {
23+
24+
#pragma clang diagnostic push
25+
#pragma clang diagnostic ignored "-Wundeclared-selector"
26+
Class FLEXManager = NSClassFromString(@"FLEXManager");
27+
if (FLEXManager) {
28+
[FLEXManager performSelector:@selector(toggleExplorer)];
29+
}
30+
#pragma clang diagnostic pop
31+
32+
}
33+
#endif
34+
35+
```
36+
37+
## Author
38+
39+
> Dragonli_52171@163.com
40+
41+
## License
42+
43+
See the LICENSE file for more info.

0 commit comments

Comments
 (0)