terryworona / TWMessageBarManager

An iOS manager for presenting system-wide notifications via a dropdown message bar.
MIT License
1.77k stars 191 forks source link

Moved 'messageVisible' flag to .h file so that it can be read from outside #88

Closed burczyk closed 8 years ago

burczyk commented 8 years ago

E.g. not to show/enqueue the same message second time.

terryworona commented 8 years ago

We don't want anyone assigning this bit from the outside.

Instead, add to the h:

@property (nonatomic, readonly, getter = isMessageVisible) BOOL messageVisible;
burczyk commented 8 years ago

Good point. It's changed.