How can I center the UILabel on the UIView? I am using the following code
float width = weatherView.bounds.size.width; float height = weatherView.bounds.size.height; [self.label setFrame:CGRectMake(width-100,height-100, 100, 100)];
How about:
[self.label setCenter:view.center];
1.4m articles
1.4m replys
5 comments
57.0k users