我已成功使用此文档在我的iOS项目中集成了Quickblox SDK:
Swift to Objective-C header not created in Xcode 6
当我收到推送消息时,我看到如下祝酒:
如何自定义吐司的背景颜色?
答案 0 :(得分:0)
可以在子文件夹TWMessageBarManager
例如,要更改颜色,请修改+(void)initialize
TWMessageBarmanager.h
+ (void)initialize
{
if (self == [TWMessageView class])
{
// Fonts
kTWMessageViewTitleFont = [UIFont boldSystemFontOfSize:16.0];
kTWMessageViewDescriptionFont = [UIFont systemFontOfSize:14.0];
// Colors
kTWMessageViewTitleColor = [UIColor colorWithWhite:1.0 alpha:1.0];
kTWMessageViewDescriptionColor = [UIColor colorWithWhite:1.0 alpha:1.0];
kTWDefaultMessageBarStyleSheetInfoBackgroundColor =[UIColor redColor];
}
}