Latest | 1.0.6 |
---|---|
Homepage | https://github.com/SaeedDehshiri/SDFrameWork |
License | MIT |
Platforms | ios 9.0 |
Dependencies | Reflection |
Authors |
SDFrameWork is powerfull framework for easy to design ios apps without Storyboard
.
Step By Step
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, …
Install from cocoapod
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'
end
Import
You should import SDFrameWork in AppDelegate
import SDFrameWork
How to use!
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)
License
SDFrameWork is released under the MIT license. See LICENSE for details.
Latest podspec
{ "name": "SDFrameWork", "version": "1.0.6", "swift_version": "4.0", "license": { "type": "MIT", "file": "LICENSE" }, "summary": "Easy for create layout without storyboard.", "homepage": "https://github.com/SaeedDehshiri/SDFrameWork", "authors": { "Saeed Dehshiri": "[email protected]" }, "source": { "git": "https://github.com/SaeedDehshiri/SDFrameWork.git", "tag": "1.0.6" }, "platforms": { "ios": "9.0" }, "source_files": "SDFrameWork/*.swift", "dependencies": { "Reflection": [] } }
Mon, 27 Aug 2018 19:40:21 +0000