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]; } }