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);
}
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.
}
}
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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With