I have a UIViewController subclass. I add many UILabel by using the [self.view addSubview:] method, and some labels exceed the bottom of the screen. However I can’t move the view to see the labels below. Do I miss something? Thanks in advance.
I have a UIViewController subclass. I add many UILabel by using the [self.view addSubview:]
Share
You need to be using a UIScrollView if you have content that exceeds the bounds of the screen (480 X 320 pixels).