Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以自定义 EKEventViewController 以查看您希望的样子,例如背景颜色或图像、单元格样式以及所有其他内容,还是需要自定义视图?
谢谢。
没有用于此的内置 API。但是,您可能可以使用一些公共 api 来更改这一点,例如:
for (UIView *subView in ekViewController.view.subviews) { if (subView isKindOfClass:NSClassFromString("CellClassHere")) { // example subView.backgroundColor = [UIColor redColor]; } }