Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 74da177

Browse files
新增readMe
1 parent 5d7b9f9 commit 74da177

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

‎README.md‎

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
## MHDevelopExample_Objective_C
2+
3+
### 求职
4+
笔者最近刚刚离职,正准备寻求iOS开发工程师一职,如果各位小伙伴公司正缺该职位,还请各位小伙伴踊跃推荐哦,虽然笔者在技术上算不上非常牛逼,但是在为人处事方面却可以说十分靠谱。
5+
如果正有需要,还请私信或联系我。谢谢~
6+
- 电话:13265873384
7+
- 微信:491273090
8+
9+
10+
### 下载
11+
-`pod install`很漫长或有问题,请戳百度网盘链接:https://pan.baidu.com/s/19n3mWjSUuh5LfmPZvepsdQ 密码:ppd7 <PS:不定期更新!!!>
12+
13+
### 概述
14+
- 本工程主要是利用`iOS``Objective-C`开发的技术要点汇总;
15+
- 涵盖了开发中踩坑的原因,以及填坑的技术分享;
16+
- 抛砖引玉,取长补短,希望能够提供一点思路,避免少走一些弯路。
17+
18+
### 使用
19+
- **特别说明:** 使用前可以全局搜索 `CMHDEBUG` 字段,找到该字段的宏定义。可以修改其值,来获取自己想看的业务场景。具体场景说明如下:
20+
21+
```
22+
/// 1 -- 进入基于MVC设计模式的基类设计
23+
/// 0 -- 进入常用的开发Demo
24+
#define CMHDEBUG 1
25+
```
26+
- [Cocoapods安装教程](https://www.cnblogs.com/chuancheng/p/8443677.html)
27+
-`Demo`利用`Cocoapods`管理第三方框架,若第一次使用本项目,请使用终端`cd`到如下图所示的文件夹,执行`pod install`命令即可。
28+
29+
![Usage.png](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/Usage.png)
30+
31+
```
32+
1. pod repo update : 更新本地仓库
33+
2. pod install : 下载新的库
34+
```
35+
- 如果你升级了Mac的系统时,并且当你的Mac系统升级为` high sierra `的时候,别忘记更新`cocoapods`。执行命令为:
36+
37+
```
38+
$ sudo gem update --system
39+
$ sudo gem install cocoapods -n/usr/local/bin
40+
```
41+
42+
### 期待
43+
- 如果在使用过程中遇到BUG,希望你能Issues我,谢谢(或者尝试下载最新的代码看看BUG修复没有)。
44+
- 如果在使用过程中发现有更好或更巧妙的实用技术,希望你能Issues我,我非常为该项目扩充更多好用的技术,谢谢。
45+
- 如果通过该工程的使用和说明文档的阅读,对您在开发中有一点帮助,码字不易,还请点击右上角`star`按钮,谢谢;
46+
- 简书地址:<http://www.jianshu.com/u/126498da7523>
47+
48+
49+
### 功能模块
50+
1. **父子控制器的使用**
51+
* 仿百思不得姐的架构实现
52+
53+
- 效果图
54+
55+
![BaiSiBuDeJie.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/BaiSiBuDeJie.gif)
56+
57+
- 说明文档:(TOOD...)
58+
59+
* 仿网易新闻的架构实现(TODO...)
60+
61+
- 效果图
62+
63+
![NetEaseNews.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/NetEaseNews.gif)
64+
65+
- 说明文档:(TOOD...)
66+
67+
2. **仿微信朋友圈的评论回复功能**
68+
* 利用UITableView的段头+Cell+段尾实现
69+
70+
- 效果图
71+
72+
![comment.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/comment.gif)
73+
74+
- 说明文档:[iOS实现微信朋友圈评论回复功能(一)](http://www.jianshu.com/p/395bac3648a7)
75+
76+
77+
* 利用UITableViewCell嵌套UITableView实现
78+
- 效果图
79+
80+
![comment.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/comment.gif)
81+
82+
- 说明文档:[iOS实现微信朋友圈评论回复功能(二)](http://www.jianshu.com/p/733733fd042d)
83+
84+
* 利用UITableView的段头+Cell+段尾实现优酷的视频的评论回复功能
85+
- 效果图
86+
87+
![youkuComment.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/youkuComment.gif)
88+
89+
- 说明文档:[iOS 实现优酷视频的评论回复功能](http://www.jianshu.com/p/feb14f4eee1c)
90+
91+
92+
3. **UITableView的使用**
93+
* UITableView的侧滑删除功能
94+
- 效果图
95+
96+
![tableView_del.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/tableView_del.gif)
97+
98+
- 说明文档:[iOS UITableView删除功能](http://www.jianshu.com/p/4c53901062eb)
99+
100+
* UITableView的的多选、删除功能
101+
- 效果图
102+
103+
![tableView_sel.gif](https://github.com/CoderMikeHe/MHDevelopExample_Objective_C/blob/master/MHDevelopExample/SnapShot/tableView_sel.gif)
104+
105+
- 说明文档:[iOS UITableView 多选删除功能](http://www.jianshu.com/p/1d82befe9988)
106+
107+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /