导航栏 translucent 属性IOS7 全新解释

 translucent  IOS7 导航栏 navigation bar 是否是半透明设置,子视图是否从屏幕 0。0 开始

在IOS 7 有了新的解释。

/* New behavior on iOS 7. Default is YES. You may force an opaque background by setting the property to NO. If the navigation bar has a custom background image, the default is inferred  from the alpha values of the image—YES if it has any pixel with alpha < 1.0 If you send setTranslucent:YES to a bar with an opaque custom background image it will apply a system opacity less than 1.0 to the image. If you send setTranslucent:NO to a bar with a translucent custom background image it will provide an opaque background for the image using the bar's barTintColor if defined, or black for UIBarStyleBlack or white for UIBarStyleDefault if barTintColor is nil. */

@property(nonatomic,assign,getter=isTranslucent)BOOL translucentNS_AVAILABLE_IOS(3_0); 

// Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent


下面是抄过来的图,可能更能说明问题,更直观

导航栏 translucent 属性IOS7 全新解释_第1张图片

你可能感兴趣的:(导航,ios7,Navigation,Bar)