SDFrameWork is powerfull framework for easy to design ios apps without Storyboard.
After checked all step, you can easily to use framework.
- Install last version from cocoapod
- Import pod after install in AppDelegate
- Use spesific class for Layout, Time, ...
First create Podfile in your project directory, after that use below code in Podfile.
platform :ios, '9.0'
use_frameworks!
target '<Your App Name>' do
pod 'SDFrameWork'
endYou should import SDFrameWork in AppDelegate
import SDFrameWork var label = UILabel()
label = SDLayout.createLabel(uiLabel: label, hex: UIColor.init(red: 20, green: 20, blue: 20, alpha: 1.0), x: 20, y: 30, h: 30, w: 100, txt: "SAMPLE label")
self.view.addSubview(label)SDFrameWork is released under the MIT license. See LICENSE for details.
