I don't want show visit indicator in news feed cards. Anybody know how to hide that indicators?
It means a triangle with a dot.
You can use the disableUnreadIndicator
disableUnreadIndicator
newsFeed.newsFeed.disableUnreadIndicator = !self.unreadIndicatorSwitch.on;
https://github.com/Appboy/appboy-ios-sdk/blob/b99d346646bb1d386ac75db5f4cc8cfeb382fb4a/Samples/NewsFeed/BrazeNewsFeedSample/BrazeNewsFeedSample/ViewController.m#L8
@property (nonatomic) BOOL disableUnreadIndicator;
Copyright © 2021 Jogjafile Inc.
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