How to populate a UIView with image and Label?
I need to build a view 开发者_Python百科where i can have a scale kind of thing such as the small and tall images below which there are numbers. | ! ! | assume the bigger line as the whole numbers and the smaller ones as partitions. I want to replicate this kind of scenario many time.
Is there a way to do this??
Thanks,
Build it in interface builder and load it by
UIView * v = [[[NSBundle mainBundle] loadNibNamed:@"MyView" owner:nil] objectAtIndex:0];
精彩评论