TSMessages
TSMessages copied to clipboard
TSMessage showing translucent black
I'm running my app on iOS 8 and when I call this it the notification shows like in the image attached:
[TSMessage showNotificationInViewController:viewController title:title // not nil subtitle:message // not nil image:nil type:type // message type duration:TSMessageNotificationDurationEndless callback:nil buttonTitle:nil buttonCallback:nil atPosition:TSMessageNotificationPositionTop canBeDismissedByUser:NO];

The weird thing is that the Example project seems to work fine on iOS 8. Any idea?
Can you check your .app folder if it contains the TSMessages bundle with the containing this file: https://github.com/toursprung/TSMessages/blob/master/Pod/Assets/TSMessagesDefaultDesign.json
Can you set a breakpoint at https://github.com/toursprung/TSMessages/blob/master/Pod/Classes/TSMessageView.m#L76 and see if the values are set correctly or if it is nil.
The design JSON is correctly loaded. However, it looks like the problem is with HexColor. I've changed the methods with those of my library, GTFoundation ([UIColor GT_colorWithHexString:]) and everything works fine.
Can you try the latest version on master? I refactored some things, it should work better now.
Still not working. It seems that HexColors is conflicting with some other Pod I have installed as it's methods are not namespaced. The only think that changed in 0.9.11 is that the bar is not translucent anymore. it's just plain black.