All Projects → yukiasai → Nori

yukiasai / Nori

Licence: mit
Easier to apply code based style guide to storyboard.

Programming Languages

swift
15916 projects

Nori

Nori designs the view of the storyboard with source code.

nori

Usage

Label

Define the custom class that extends StyleableLabel as @IBDesignable. And implement the func intrinsicStyle() -> LabelStyle.

import Nori

@IBDesignable class LargeLabel: StyleableLabel {
    override func intrinsicStyle() -> LabelStyle {
        return LabelStyle {
            $0.textColor = Color.black.color
            $0.font = UIFont.systemFont(ofSize: FontSize.large.point)
        }
    }
}

Button

It's same as the Label.

@IBDesignable class StarButton: StyleableButton {
    override func intrinsicStyle(for state: UIControlState) -> ButtonStyle {
        return ButtonStyle {
            $0.backgroundColor = Color.green.color
            $0.cornerRadius = 10
            $0.title = LabelStyle {
                $0.textColor = UIColor.white
            }
        }
    }
}

Supported views

  • View
  • Button
  • ImageView
  • Label
  • TextField
  • Switch

License

Nori is released under the MIT license. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].