我创建了一个简单的ProgressView类,我希望在执行一些长任务时显示它。但是,当我将它添加到父视图时,它永远不会变得可见,并且从不调用layoutSubviews。
该课程实施如下:
@implementation ProgressView
@synthesize title;
@synthesize cancel;
@synthesize progress;
@synthesize delegate;
- (id)initWithFrame:(CGRect)frame
{
//frame = CGRectMake( 0, 0, 240, 112 );
self = [super initWithFrame:frame];
if ( self )
{
self.title = [[UILabel alloc] init];
self.cancel = [UIButton buttonWithType: UIButtonTypeCustom];
self.progress = [[UIProgressView alloc] init];
self.backgroundColor = [UIColor darkGrayColor];
[self addSubview: self.title];
[self addSubview: self.cancel];
[self addSubview: self.progress];
}
return self;
}
+ (id) createWithTitle: (NSString*) pTitle
{
ProgressView* pRet = [[ProgressView alloc] initWithTitle: pTitle];
return pRet;
}
- (id) initWithTitle: (NSString*) pTitle
{
self = [super initWithFrame: CGRectMake( 0, 0, 240, 112 )];
if ( self )
{
self.title.text = pTitle;
}
return self;
}
- (void) layoutSubviews
{
CGSize superFrameSize = self.superview.frame.size;
CGSize halfSuperFrameSize = CGSizeMake( superFrameSize.width / 2, superFrameSize.height / 2 );
CGSize frameSize = self.frame.size;
CGSize halfFrameSize = CGSizeMake( frameSize.width / 2, frameSize.height / 2 );
// Center the window on its parent.
[self setFrame: CGRectMake( halfSuperFrameSize.width - halfFrameSize.width, halfSuperFrameSize.height - halfFrameSize.height, frameSize.width, frameSize.height )];
[self.title setFrame: CGRectMake( 4, 4, frameSize.width - 8, 24 )];
[self.progress setFrame: CGRectMake( 4, 32, frameSize.width - 8, 24 )];
[self.cancel setFrame: CGRectMake( 4, 64, frameSize.width - 8, 44 )];
[self setNeedsDisplay];
}
我将视图添加如下:
pProgressView = [[ProgressView alloc] initWithTitle: @"Downloading..."];
[pProgressView setDelegate: self];
[self.view addSubview: pProgressView];
但它从未显示过。我已经检查过删除肯定会在以后发生,并且有足够的时间让视图变得可见。然而我却不知所措。无论我做什么,ProgressView都不会显示。
有人能指出我正在做的最可能是愚蠢的错误吗?
答案 0 :(得分:3)
你需要在-initWithTitle中调用指定的初始值设定项,而不是[super init]:
self = [self initWithFrame: CGRectMake( 0, 0, 240, 112 )];
指定的初始值设定项是调用超类'初始化程序的初始化程序,有关详细信息,请参阅here。
答案 1 :(得分:0)
好的我想通了,我真的很傻。
我正在使用导航控制器。 NavigtionViewController处理下载启动。唯一的问题是它是由子视图控制器生成的。所以我将我的ProgressView添加到当前不可见的视图中......
D'OH!
对不起所有人。
我的新addSubview代码如下:
[self.navigationController.topViewController.view addSubview: pProgressView];