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.siz
Use NSTextAlignmentCenter if what you have is the label already set and you want to center its content.
cell.menuLabel.textAlignment = NSTextAlignmentCenter;