0

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.

d-_-b
  • 21,536
  • 40
  • 150
  • 256
Mikhail S
  • 3,338
  • 3
  • 21
  • 34
  • providing some screenshots (i.e. current & expected) will help us have a better idea on how to give you a solution. – Lawrence Tan Oct 12 '17 at 01:55

2 Answers2

0

@property (nonatomic) BOOL disableUnreadIndicator;

Mikhail S
  • 3,338
  • 3
  • 21
  • 34
0

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

d-_-b
  • 21,536
  • 40
  • 150
  • 256