我讀過所有關於這個話題確切以前的職位,但我當用戶在這個iPad應用程序滾動仍然無法檢測...的iOS滾動型檢測滾動
我的.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_RootViewPrint:(NSString *) data;
-(void)ActionEventForButton: (id) sender;
@end
我的.m:
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
NSLog(@"...");
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
NSLog(@"2222");
}
- (void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event
{
NSLog(@"touches ended BS");
}
但他們都不工作?我確定這很簡單,但我已經盡了我所能想到的一切,而且什麼都沒有。任何正確的方向指導將深受讚賞!
你必須otherScrollView的委託設置爲文件所有者 – Hiren 2012-01-16 06:34:30