我在viewDidLoad中對我的ViewController下面的代碼:添加滾動視圖的iOS的Objective-C
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:204.0/255 green:00.0/255 blue:00.0/255 alpha:1];
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];
autoNameLabel.text = (NSString *)[vendorDetails objectForKey:@"autoname"];
homeLabel.text = (NSString *)[vendorDetails objectForKey:@"homelab"];
descriptionTextView.text = (NSString *)[vendorDetails objectForKey:@"description"];
這一切都完全符合上的視圖。我知道需要在底部添加一個額外的textView,因此需要用戶能夠滾動以查看它。我如何將此信息添加到可滾動視圖並添加我的其他textView?
如果你還想要,你也可以在xib中做大部分工作。 – atreat
我嘗試過使用XIB並簡單地拖動滾動視圖,然後拖動其下的其他視圖,但仍然不滾動。 – user989557
你需要調整你的contentSize。這是最重要的一部分。我不相信你可以在xib中做到這一點,但也許。如果不使用上面的代碼示例。 – atreat