Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
iOS Architecture
halfrost
August 25, 2016
Programming
0
110
iOS Architecture
halfrost
August 25, 2016
Tweet
Share
More Decks by halfrost
See All by halfrost
Segment Tree Basics
halfrost
0
560
Redis multi-data center two-way synchronization
halfrost
0
250
Redis design ideas and usage specifications
halfrost
0
220
Golang message streaming practice in Eleme
halfrost
0
200
SQL practical optimization
halfrost
0
200
Fundamentals of Cryptography
halfrost
0
150
The practice of spatial index in geographic service
halfrost
0
200
Getting started with Machine Learning
halfrost
0
130
Functional Reactive Programming
halfrost
0
140
Other Decks in Programming
See All in Programming
NGK2023S - OCaml最高! スマホ開発にも使えちゃう?!
haochenxie
0
120
Most Valuable Bug(?) ~インシデント未遂から得た学び~
tatsumiakahori
0
150
ECテックカンファレンス2023
kspace
1
380
ipa-medit: Memory search and patch tool for IPA without Jailbreaking/ipa-medit-bh2022-europe
tkmru
0
130
Hatena Engineer Seminar #23「新卒研修で気軽に『ありがとう』を伝え合える Slack アプリを開発した話」
slashnephy
0
370
フロントエンドで学んだことをデータ分析で使ってみた話
daichi_igarashi
0
190
Findy - エンジニア向け会社紹介 / Findy Letter for Engineers
findyinc
2
42k
Unity+C#で学ぶ! メモリレイアウトとvtableのすゝめ 〜動的ポリモーフィズムを実現する仕組み〜
rossam
1
320
10年以上続くプロダクトの フロントエンド刷新プロジェクトのふりかえり
yotahada3
2
350
PHPアプリケーションにおけるアーキテクチャメトリクスについて / Architecture Metrics in PHP Applications
isanasan
1
280
Swift Observation
shiz
4
290
Step Functions Distributed Map を使ってみた
codemountains
0
110
Featured
See All Featured
Building Applications with DynamoDB
mza
85
5k
No one is an island. Learnings from fostering a developers community.
thoeni
12
1.5k
Embracing the Ebb and Flow
colly
75
3.6k
Bash Introduction
62gerente
601
210k
The World Runs on Bad Software
bkeepers
PRO
59
5.7k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
22
1.7k
Become a Pro
speakerdeck
PRO
6
3.2k
What's in a price? How to price your products and services
michaelherold
233
9.7k
Designing on Purpose - Digital PM Summit 2013
jponch
108
5.9k
Art Directing for the Web. Five minutes with CSS Template Areas
malarkey
197
10k
The Cult of Friendly URLs
andyhume
69
5.1k
Optimizing for Happiness
mojombo
365
64k
Transcript
⽅创iOS 架构漫谈 于德志
Problem 代码复⽤率低 业务之间的差异性⼤ ⼯程内各个模块之间有相当⼀些 代码是拷⻉的,或者说仅仅是个 别参数不同,⼤体都相同的代 码,在⼯程中出现的太多,导致 app包的体积明显变⼤ 由于整个项⽬中可以公共的中间件或者组 件⽬前还⽐较少,导致⼀些业务之间差异
性本来不是很⼤,由于重⽤的东⻄少,导 致基本上所有业务都是新的,很多都是重 头开始,导致了开发效率低
Analysis 先看看现在的构架
Now
Actual
How to solve 业务之间差异性⼤ 提⾼代码复⽤率 分层 代码复⽤率低 改
How to solve 业务功能 分层化 组件化 层次结构 改
None
expect
How to solve
Layer View ViewModel 项⽬Model 图⽚ 项⽬名称 概要 上线状态 浏览次数 融资轮数
领域 融资⾦额 imgeURL name desclabel status browse count amount company Area company money
Layer View ViewModel 项⽬Model 群头像 群名称 最近消息 最近时间 imgeURL GroupName
lastmessage lastTime
Advantage 1.分层 UI和业务逻辑相互隔离 2.View可以复⽤ View可以被不⽤业务中复⽤ 不⽤业务的ViewModel通过业务不⽤来注⼊到View中 3.View可以相互灵活替换 View可以根据不同业务逻辑,可以替换成各个不同的 版本
None
Layer View ViewModel ProJectDetailModel imageViewModel userViewModel ProJViewModel …………
Problem 1.组件之间的依赖 组件之间可能有公共的数据源 2.组件之间有先后关系 组件之间可能存在相互调⽤的关系 3.UI之间相互关联 ……
Message Bus GroupViewModel 消息总线 ChatViewModel ChatListViewModel 发布群⼈数变更消息 订阅消息 订阅消息
Advantage 消息总线 数据库组件 ViewModel ViewModel ViewModel ViewModel ⽹络组件 Socket组件 利⽤中介者
模式,现实 完全解耦
Install 开发对应的ViewModel 下⼀个组件 配置消息总线 选择ViewModel 开发新组件 选择组件 开始 结束
summary 1.通过MVVM和组件化实现完全解耦,后期维护效率更⾼ 2.⼀个新业务需求的拆分 将新需求拆分成各个组件View/ViewModel的开发,完 成新需求只需要装配各个组件即可完成 3.开发效率⼤⼤提⾼ ……
Thanks!