iOS APP 设置配置 Setting.bundle

简单的利用xcode提供的Setting.bundle进行玩一个APP的导航栏颜色切换。

https://www.jianshu.com/p/27fe365202b4 Setting.bundle 不懂可参考这篇文章。

iOS APP 设置配置 Setting.bundle_第1张图片
image.png
image.png




    StringsTable
    Root
    PreferenceSpecifiers
    
        
            Type
            PSTextFieldSpecifier
            Title
            
            Key
            
        
        
            Type
            PSGroupSpecifier
            Title
            个人信息
            Key
            
        
        
            Type
            PSTextFieldSpecifier
            Title
            姓名
            Key
            username
        
        
            Type
            PSMultiValueSpecifier
            Values
            
                red
                green
                blue
            
            Title
            主题颜色
            Titles
            
                红色
                蓝色
                绿色
            
            Key
            theme
            DefaultValue
            red
        
        
            FalseValue
            NO
            TrueValue
            
            DefaultValue
            
            Type
            PSToggleSwitchSpecifier
            Title
            是否成年
            Key
            maritalStatus
        
        
            Type
            PSGroupSpecifier
            Title
            等级
            Key
            
        
        
            DefaultValue
            5
            MaximumValue
            10
            MinimumValue
            1
            Type
            PSSliderSpecifier
            Title
            等级
            Key
            levelState
        
    



iOS APP 设置配置 Setting.bundle_第2张图片
image.png
iOS APP 设置配置 Setting.bundle_第3张图片
image.png

你可能感兴趣的:(iOS APP 设置配置 Setting.bundle)