5

我遇到了一个问题,当我scrollViewDidScroll在我的子类中调用该方法时UIScrollView没有任何反应。这是我的代码:

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;
}

滚动视图.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);
}
4

3 回答 3

5

- (id)initWithFrame:(CGRect)frame

添加

self.delegate = self;

或在 AppDelegate.m 中,滚动视图启动后,添加此代码

scrollview.delegate = self;

当然,你必须实现委托方法

scrollViewDidScroll:

并且不要忘记在 AppDelegate.h 中添加以下代码

@interface AppDelegate : UIResponder <UIApplicationDelegate,UIScrollViewDelegate>
于 2013-01-14T01:56:00.370 回答
5

对于 iOS10,SWift 3.0 在 UIScrollView 上实现 scrollViewDidScroll

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.
}
}
于 2015-11-20T12:31:59.363 回答
4

第 1 步:为 UIViewController 类创建委托:

  @interface ViewController : UIViewController <UIScrollViewDelegate>

UIScrollView第 2 步:然后为您的对象添加委托:

  scrollview.delegate = self;

第 3 步:实现 Delegate 方法如下:

 - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
     // Do your stuff here...
     // You can also track the direction of UIScrollView here....
     // to check the y position use scrollView.contentOffset.y
 }

干得好。借助以上 3 个步骤,您可以将ScrollViewDidScroll方法集成到我们的Objective-C类中。

于 2015-12-11T08:40:50.980 回答