Appboy SDK. How to hide visit indicator for News Feed cards?

66 Views Asked by At

I don't want show visit indicator in news feed cards. Anybody know how to hide that indicators? enter image description here

It means a triangle with a dot.

2

There are 2 best solutions below

0
On

You can use the disableUnreadIndicator

newsFeed.newsFeed.disableUnreadIndicator = !self.unreadIndicatorSwitch.on;

https://github.com/Appboy/appboy-ios-sdk/blob/b99d346646bb1d386ac75db5f4cc8cfeb382fb4a/Samples/NewsFeed/BrazeNewsFeedSample/BrazeNewsFeedSample/ViewController.m#L8

0
On

@property (nonatomic) BOOL disableUnreadIndicator;