我有一个已声明为 iboutlet 的滚动视图,但我想检索高度信息。我正在这样做:scrollview.frame.size.height 但它返回 0。顺便说一句,我在 ViewDidLoad 方法中。有什么提示吗?
/*************aClass.h***********/
#import <UIKit/UIKit.h>
@interface aClass : UIViewController <UIScrollViewDelegate>{
IBOutlet UIScrollView *scrollViewCC;
}
@end
/************aClass.m************/
#import "aClass.h"
#define aNumber 2
@interface DLRPersona ()
@end
@implementation aClass
-(void)ViewDidLoad{
[super viewdidload]
}
@end