- April 27, 2024
- Mins Read
LeeGo is a lightweight Swift framework that helps you decouple & modularise your UI component into small pieces of LEGO style’s bricks, to make UI development declarative, configurable and highly reusable.
We all know that MVC pattern has some serious problems when dealing with a complex iOS project. Fortunately there are also a bunch of approaches that aim to fix the problems, most of them mainly address the Controller
part, such as MVP, MVVM, MVSM or VIPER. But there is barely a thing which addresses the View
part. Does that mean we just run out of all the problems in the View
part ? I think the answer is NO, especially when we need our app to be fully responsive.
I’ve talked this idea on a dotSwift’s talk, and also on my blog posts:
Please checkout through for more details.
LeeGo, replaces the View
part of MVC by Brick
.
brick
whenever & wherever you want.Brick
s which is lightweight and pure value type.Both:
Pros:
Cons:
Create a Brick
instance which named “title” as UILabel, with default text “Showcase” and gray background color
import LeeGo
let titleBrick: Brick = “title”.build(UILabel).style([.text(“Showcase”), .backgroundColor(.lightGrayColor())])
Configure an UILabel
instance just as title brick
let titleLabel = UILabel()
titleLabel.lg_configureAs(titleBrick)
#### More complex bricks Create the bricks inside a cell brick
let titleBrick = “title”.build(UILabel).style([.numberOfLines(0), .text(“title”)])
let subtitleBrick = “subtitle”.build(UILabel).style([.textColor(.lightGrayColor()), .numberOfLines(0), .font(.systemFontOfSize(14)), .text(“subtitle”)])
let imageBrick = “image”.build(UIImageView).style([.ratio(1.5), .backgroundColor(.blueColor())]).width(68)
/// Create a brick stand for `UIView` which contains a `title`,
/// a `subtitle` and an `image` inside, layout them with
/// standard auto layout VFL.
let brickName = “cell”
let cellBrick = brickName.build().bricks(titleBrick, subtitleBrick, imageBrick) {
title, subtitle, image in
return Layout([
“H:|-left-[\(image)]-spaceH-[\(title)]-right-|”,
“H:[\(image)]-spaceH-[\(subtitle)]-right-|”,
“V:|-top-[\(title)]-spaceV-[\(subtitle)]-(>=bottom)-|”,
“V:|-top-[\(image)]-(>=bottom)-|”], metrics: LayoutMetrics(20, 20, 20, 20, 10, 10))
}
Dequeue a standard UICollectionViewCell
instance, then configure it as cell brick with element
as data source
let cell = collectionView.dequeueCell…
cell.lg_configureAs(cellBrick, dataSource: element[indexPath.item])
Create a brick stand for UIView
which contains the 3 bricks (red, green & blue block), then lay them out with the UIStackView
inspired layout helper method.
let bricks = [“red”.build().style(Style.redBlockStyle).height(50),
“green”.build().style(Style.greenBlockStyle).height(80),
“blue”.build().style(Style.blueBlockStyle).height(30)]
let layout = Layout(bricks: bricks, axis: .Horizontal, align: .Top, distribution: .FillEqually, metrics: LayoutMetrics(10, 10, 10, 10, 10, 10))
let viewBrick = “view”.build().style(Style.blocksStyle).bricks(bricks, layout: layout).height(100)
Configure a UIView
instance just as the brick
view.lg_configureAs(viewBrick)
#### Union different bricks Union different bricks to a new brick with `UIStackView` style’s layout.
let viewBrick = Brick.union(“brickName”, bricks: [
title,
subtitle,
Brick.union(“blocks”, bricks: [
redBlock.height(50),
greenBlock.height(80),
blueBlock.height(30)], axis: .Horizontal, align: .Top, distribution: .FillEqually, metrics: LayoutMetrics(10, 10, 10, 10, 10, 10)).style([.backgroundColor(.yellowColor())])
], axis: .Vertical, align: .Fill, distribution: .Flow(3), metrics: LayoutMetrics(20, 20, 20, 20, 10, 10))
Configure a UIView
instance just as the brick
view.lg_configureAs(viewBrick)
#### More complex brick and build with an enum An enum which implements `BrickBuilderType`, used to centralize all `brick` designs in a single enum file.
import LeeGo
enum TwitterBrickSet: BrickBuilderType {
// leaf bricks
case username, account, avatar, tweetText, tweetImage, date, replyButton, retweetButton, retweetCount, likeButton, likeCount
// complex bricks
case retweetView, likeView
case accountHeader, toolbarFooter, retweetHeader
// root bricks
case standardTweet
static let brickClass: [Twitter: AnyClass] = [username: UILabel.self, account: UILabel.self, avatar: UIImageView.self, tweetText: UITextView.self]
func brick() -> Brick {
switch self {
case .username:
return build().style([.font(.boldSystemFontOfSize(14))])
case .account:
return build().style([.font(.systemFontOfSize(14))])
case .avatar:
return build().style([.ratio(1), .backgroundColor(.lightGrayColor()), .cornerRadius(3)]).width(50)
case .tweetText:
return build().style([.scrollEnabled(false)])
…
case .standardTweet:
return build().style([.backgroundColor(.whiteColor())])
.bricks(
avatar.brick(),
accountHeader.brick(),
tweetText.brick(),
tweetImage.brick(),
toolbarFooter.brick()
) { (avatar, accountHeader, tweetText, image, toolbarFooter) in
Layout([“H:|-10-[\(avatar)]-10-[\(tweetText)]-10-|”,
“H:[\(avatar)]-10-[\(accountHeader)]-10-|”,
“H:[\(avatar)]-10-[\(image)]-10-|”,
“H:[\(avatar)]-10-[\(toolbarFooter)]-10-|”,
“V:|-10-[\(avatar)]-(>=10)-|”,
“V:|-10-[\(accountHeader)]-10-[\(tweetText)]-10-[\(image)]-10-[\(toolbarFooter)]-(>=10)-|”])
}
}
}
}
/// Configure your cell
let cell = collectionView.dequeueCell…
cell.lg_configureAs(TwitterBrickSet.standardTweet.brick(), dataSource: element[indexPath.item])
## Update UI remotely `Brick` is designed to be JSON convertible, which makes possible that you can control your app’s interface, from tweak some UIKit appearances to create view/cell with brand new design **remotely** via JSON payload. Please check out [“JSON encodable & decodable”](Docs/Remote.md) for more details.
For best practices and more design details, please checkout more design details
LeeGo is available through CocoaPods. To install it, simply add the following line to your Podfile:
source ‘https://github.com/CocoaPods/Specs.git’
platform :ios, ‘8.0’
use_frameworks!
pod “LeeGo”
To integrate LeeGo into your Xcode project using Carthage, specify it in your Cartfile:
github “wangshengjia/LeeGo”
Then, run the following command to build the LeeGo framework:
$ carthage update
At last, you need to set up your Xcode project manually to add the LeeGo framework.
Horizon SDK is a state of the art real-time video recording / photo shooting iOS library. Some of the features ...