OK, I'm struggling to make this work but without success. Basically I want to add a UILabel to an UIView and center it.
The code looks like this:
UIView *customTitleView = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 44.0)];
[customTitleView setBackgroundColor:[UIColor clearColor]];
// Screen title
CGSize constraint = CGSizeMake(200.0, 44.0f);
CGSize size = [screenTitle sizeWithFont:[UIFont boldSystemFontOfSize:20.0]
constrainedToSize:constraint
lineBreakMode:UILineBreakModeCharacterWrap];
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 0.0, size.width, size.height)];
[titleLabel setText:screenTitle];
[titleLabel setTextColor:[UIColor whiteColor]];
[titleLabel setFont:[UIFont boldSystemFontOfSize:20.0]];
[titleLabel setBackgroundColor:[UIColor clearColor]];
titleLabel.center = customTitleView.center;
[customTitleView addSubview:titleLabel];
[titleLabel release];
self.navigationItem.titleView = customTitleView;
[customTitleView release];
I expected that the UILabel would be centered within the UIView. Well, it isn't. It is somehow right aligned and not even close to the center of the UIView.
What am I doing wrong?
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(customTitleView.frame.size.width/2-size.width/2, customTitleView.frame.size.height/2-size.height/2, size.width, size.height)];to init the titleLabel – Seega Mar 22 '11 at 16:11titleLabel = [[UILabel alloc] initWithFrame:customTitleView.bounds]; titleLabel.textAlignment = UITextAlignmentCenter;? – Jilouc Mar 22 '11 at 16:28