自定义 EKEventController 样式

发布于 2025-01-02 22:11:07 字数 95 浏览 1 评论 0原文

是否可以自定义 EKEventViewController 以使其外观如您所愿,例如背景颜色或图像、单元格样式以及所有其他内容,或者是否需要自定义视图?

谢谢。

Is is it possible to customise an EKEventViewController to look how you wish, so background colour or image, cells style and all the rest, or will it require a custom view?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲娇萝莉攻 2025-01-09 22:11:07

没有用于此目的的内置 API。但是,您可能可以使用一些公共 api 来更改此设置,例如:

for (UIView *subView in ekViewController.view.subviews)
{
     if (subView isKindOfClass:NSClassFromString("CellClassHere"))
     {
         // example
         subView.backgroundColor = [UIColor redColor];
     }
}

There is no built-in API for this. However, you could probably use some public apis to change this, example:

for (UIView *subView in ekViewController.view.subviews)
{
     if (subView isKindOfClass:NSClassFromString("CellClassHere"))
     {
         // example
         subView.backgroundColor = [UIColor redColor];
     }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文