嗨,我尝试自定义 apptentive ApptentiveMessageCenterReplyCell、ApptentiveMessageCenterContextMessageCell、ApptentiveMessageCenterMessageCell颜色,因为它在 Storyboard 中用作单元格。在颜色更改时,我想更新它的背景颜色,因为我无法使用 SDK 从 styleSheet 访问它。
iOS SDK 版本:apptentive-ios 4.0.7
//示例代码
ApptentiveStyleSheet *style = [[Apptentive sharedConnection]styleSheet];
style.backgroundColor = self.isLightTheme ? [UIColor whiteColor] : [UIColor blackColor];
style.primaryColor = self.isLightTheme ? [UIColor blackColor] : [UIColor whiteColor];
在 iPhone X 横向更改颜色时面临问题。无法更改提到的单元格 UITableViewCell 的颜色。