groups

Link to this snippet:


Download to Code Collector

language: Objective-C
licence: Other

Center UILabel inside UIView

options: send to code collectorview all willc2's snippets
// this probably works for all kinds of views, not just UILabel
// used to nest text inside a view to make a labeled view

// someView has a frame
CGRect labelFrame = CGRectMake(0, 0, someView.frame.size.width, someView.frame.size.height);
// usage
// init a label with labelFrame
// addSubview to someView