Skip to content

saeedai1212/SDFrameWork

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SDFrameWork in Swift by Saeed Dehshiri

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.

About

Power full framework for design without storyboard.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors