ios Quickblox - 自定义通知吐司颜色

时间:2015-07-06 06:56:45

标签: ios colors push-notification toast quickblox

我已成功使用此文档在我的iOS项目中集成了Quickblox SDK:

Swift to Objective-C header not created in Xcode 6

当我收到推送消息时,我看到如下祝酒:

enter image description here

如何自定义吐司的背景颜色?

1 个答案:

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