我有兩個視圖控制器。一個用於頁面控制的滾動視圖,另一個用於細節(滾動垂直)。scrollToTop不適用於iPhone,但它在iPad上工作
當我點擊iPhone上的狀態欄scrollToTop不工作,並在iPad的scrollToTop工作。
我確定scrollView.scrollToTop是YES。因爲我已經打印了。
任何人都知道是什麼導致iPhone scrollToTop不工作?
謝謝
編輯: 我嘗試通過調用滾動視圖的委託。它在iPad中被稱爲 。 (BOOL)scrollViewShouldScrollToTop:(UIScrollView *)scrollView
在iPhone中它不被調用。 我已經同時使用 contentScrollView.delegate = self; 但不工作:(
編輯iphone:嘗試繼承的UIWindow(不工作)
在window.h
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface Window : UIWindow
@end
Window.m
#import "Window.h"
@implementation Window
- (UIView*)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
if ([event type] == UIEventTypeTouches && point.y < 250) {
//Send Your Notification Here
NSLog(@"KAROOO");
}
NSLog(@"HELLOWW");
return [super hitTest:point withEvent:event];
}
@end
AppDelegate.h
@property (nonatomic, strong) IBOutlet Window *window;
AppDelegate.m
@synthesize window = _window;
在我的iPhone ios 5不工作也。在ipad 4.3和5都在工作。我如何在UIWindow上添加一個類別並添加手勢識別器? – 2011-12-18 05:42:12