What is the recommended method of styling an iOS app?

前端 未结 7 1364
一个人的身影
一个人的身影 2020-12-14 17:46

What is the recommended method of styling an iOS app? For example, if there are multiple labels or text views how can updating font style/color at one place update the style

7条回答
  •  情书的邮戳
    2020-12-14 18:16

    You could import a standard header file into all your controllers with several constants set for styling... example:

    Styles.h

    #define kFontSize 14
    #define kFontFamily @"Helevetica"
    

    Controller

    #import "Styles.h" // at the top
    
    myLabel.font = [UIFont fontWithName:kFontFamily size:kFontSize];
    

    I personally think Interface Builder is the best way to style, however this answers your question directly.

提交回复
热议问题