0

我有几个 UITableViews,我想做的是能够从单个类(即 AppDelegate 类)更改这些 UITableViews 的属性。

有谁知道是否可以这样做?

4

1 回答 1

0

如果您使用的是 iOS5,那么您可以使用 UIAppearance

//For example this changes the background color of all UITableViews contained in a UIView
[[UITableView appearanceWhenContainedIn:[UIView class], nil] setBackgroundColor:[UIColor greenColor]];
于 2012-06-18T09:00:01.643 回答