Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement scrollViewDidScroll in UIScrollView

I'm having a problem where when I call the scrollViewDidScroll method in my subclass of UIScrollView nothing happens. Here is my code:

AppDelegate.m

#import "ScrollView.h"

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    CGRect screenRect = [[self window] bounds];

    ScrollView *scrollView = [[ScrollView alloc] initWithFrame:screenRect];
    [[self window] addSubview:scrollView];
    [scrollView setContentSize:screenRect.size];

    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

ScrollView.m

#import "AppDelegate.h"
#import "ScrollView.h"

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        NSString *imageString = [NSString stringWithFormat:@"image"];
        UIImage *image = [UIImage imageNamed:imageString];
        UIImageView *imageView = [[UIImageView alloc] initWithImage:image];

        [super addSubview:imageView];
    }
    return self;
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    NSLog(@"%f", scrollView.contentOffset.y);
}
like image 324
colindunn Avatar asked Jan 14 '13 01:01

colindunn


2 Answers

For iOS10, SWift 3.0 implement scrollViewDidScroll on UIScrollView

class ViewController: UIViewController, UIScrollViewDelegate{

//In viewDidLoad Set delegate method to self.

@IBOutlet var mainScrollView: UIScrollView!

override func viewDidLoad() {
    super.viewDidLoad()

    self.mainScrollView.delegate = self

}
//And finally you implement the methods you want your class to get.
func scrollViewDidScroll(_ scrollView: UIScrollView!) {
    // This will be called every time the user scrolls the scroll view with their finger
    // so each time this is called, contentOffset should be different.

    print(self.mainScrollView.contentOffset.y)

    //Additional workaround here.
}
}
like image 166
ViJay Avhad Avatar answered Sep 27 '22 22:09

ViJay Avhad


in

- (id)initWithFrame:(CGRect)frame

add

self.delegate = self;

or in AppDelegate.m,after scrollview inited, add this code

scrollview.delegate = self;

of course, you must implements the delegate method

scrollViewDidScroll:

and don't forgot add below code in AppDelegate.h

@interface AppDelegate : UIResponder <UIApplicationDelegate,UIScrollViewDelegate>
like image 36
Tony Stark Avatar answered Sep 27 '22 21:09

Tony Stark