I want to show user there is a more content below but UITableView only shows scroll indicator when we scroll the tableview. There is any way, so I can show scroll indicator always
-(void)viewDidAppear:(BOOL)animated{ timer = [NSTimer scheduledTimerWithTimeInterval:0.8 target:self selector:@selector(indicator:) userInfo:nil repeats:YES]; } -(void)viewDidDisappear:(BOOL)animated{ [timer invalidate]; } -(void)indicator:(BOOL)animated{ [tableViewer flashScrollIndicators]; NSLog(@"asda"); }
Just blink the scrollbar
2.1m questions
2.1m answers
60 comments
57.0k users