I want to move UIImageview along scrollbar in scrollview . I tried in DidScroll Delegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
static NSInteger previousPage = 0;
NSLog(@"scrolliview= %f",scrollView.contentOffset.x);
[_img_moving setBackgroundColor:[UIColor greenColor]];
_img_moving.frame = CGRectMake(
scrollView.contentOffset.x,
0, 320/2, 10);
}
frame of uiimageview is not changing. Note: My aim is to make scrollbar of green color with width 10 px