OStack程序员社区-中国程序员成长平台

标题: iphone - iOS Scrollview 检测滚动 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:56
标题: iphone - iOS Scrollview 检测滚动

我已经阅读了之前关于这个确切主题的所有帖子,但我仍然无法检测到用户何时在这个 iPad 应用上滚动...

我的.h:

#import <UIKit/UIKit.h>

@interface MyApp_ViewController : UIViewController <UIScrollViewDelegate>
{

}
@property (weak, nonatomic) IBOutlet UIButton *otherButton;
@property (weak, nonatomic) IBOutlet UIScrollView *otherScrollView;
@property (weak, nonatomic) IBOutlet UITextView *txtViewHTML;

-(void)k_RootViewPrintNSString *) data;

-(void)ActionEventForButton: (id) sender;

@end

我的.m:

-(void)scrollViewDidScrollUIScrollView *)scrollView 
{

    NSLog(@"...");
}

- (void)scrollViewDidEndDeceleratingUIScrollView *)scrollView
{
    NSLog(@"2222");
}
- (void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event 
{
    NSLog(@"touches ended BS");
}

但它们都不起作用?我确信这很简单,但我已经做了我能想到的一切,但仍然一无所获。任何正确方向的指导将不胜感激!



Best Answer-推荐答案


如果它没有登录 scrollViewDidScroll:,那么 ScrollView 的委托(delegate)没有设置到 View Controller 。

您可以在调试器中检查这一点。应用启动后,暂停调试器并运行以下命令:

po [[(id)UIApp keyWindow] recursiveDescription]

查看输出以找到您的 UIScrollView 的地址。会有一行写着 。获取地址(在我的示例中为 0xc894d60)并在此调试器命令中使用它:

po [0xc894d60 delegate]

如果它打印出类似 的内容,则您的委托(delegate)设置正确。如果它打印“无法打印 NIL 对象的描述。”,您还没有设置 ScrollView 的委托(delegate)。如果它打印了其他内容,则说明您错误地设置了 ScrollView 的委托(delegate)。

关于iphone - iOS Scrollview 检测滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8876451/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4