我有一个滚动视图,我已声明为iboutlet,但我想检索高度信息。我这样做:scrollview.frame.size.height但它返回0. BTW im在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