gpt4 book ai didi

iphone - iOS 5 : Curious about UIAppearance

转载 作者:IT老高 更新时间:2023-10-28 11:35:05 25 4
gpt4 key购买 nike

在 2011 年技术演讲中,我看到了一个关于新 UIAppearance protocol 的演讲.那里还没有很多文档。我将简短地总结一下我记得的内容,以解释我的问题来自哪里:


关于UIAppearance:

到目前为止,您必须在所有应用 View Controller 中自定义每个导航栏(工具栏等)属性。使用新的外观属性,您可以只在一个地方为应用程序中的所有导航栏执行此操作。例如:如果您想自定义导航栏背景图像,您可以这样做:

[[UINavigationBar appearance] setBackgroundImage:
[UIImage imageNamed:@"MyImageName"] forBarMetrics:UIBarMetricsDefault];

这将设置应用程序中所有导航栏的背景图像。使用 barMetrics 您可以指定是否要在横向模式下也使用图像。

如果您想指定仅在某些 View Controller 中应用的外观,文档中还有一种方法可以通过指定对象的位置来控制它:

[[UIBarButtonItem appearanceWhenContainedIn:
[ABPeoplePickerNavigationController class], nil] setTintColor:myNavBarColor];

另外值得一提的是,如果您有单个自定义实例,与您的外观设置不同,这些实例将不受外观代理的影响。


一些问题:

a) 我如何知道类的哪些属性与外观属性一起使用? 例如因为 UITableView 符合 UIAppearance 协议(protocol),所以我想我可以做类似的事情

[[UITableView appearance] setBackgroundColor:mytableViewColor];

来操纵我所有表格 View 的背景颜色,但我不能!

b) 是否有所有可使用外观属性操作的类的列表?

c) 在什么时候调用外观自定义? 我希望在运行时对外观属性进行更改,但不幸的是,这些更改没有发生。

最佳答案

a) How do I know which instances of a class work with the appearance property? For e.g. since UITableView conforms to the UIAppearance protocol I was thinking I could do something like

您查看类的标题(以及所有父类(super class)的标题)。 UI_APPEARANCE_SELECTOR 旁边的任何方法都支持与 UIAppearance 代理一起使用。

[[UITableView appearance] setBackgroundColor:mytableViewColor];

backgroundColor 属性未使用 UIView.h 中的 UI_APPEARANCE_SELECTOR 修饰。因此,它在技术上不支持与外观代理一起使用。它可能会起作用,但(鉴于缺乏方法修饰)不能保证。

来自UIAppearance 协议(protocol)引用:

To support appearance customization, a class must conform to the UIAppearanceContainer protocol and relevant accessor methods must be marked with UI_APPEARANCE_SELECTOR.

(注意“相关的访问器方法必须标记...”[强调添加])


b) Is there a list of all properties that are manipulatable with the appearance property?

是否有一个页面显示每个使用外观代理的 setter ?我不知道,也没有办法在运行时构建列表。


c) At what point is the appearance customization being called? I was hoping to make changes threw the appearance property at runtime, but unfortunately the changes aren't taking place.

您可以在执行期间的任何时候使用外观代理。直到下次调用这些 View 的 -layoutSubviews 方法时,这些更改才会应用于受影响的 View 。

关于iphone - iOS 5 : Curious about UIAppearance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8257556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com