UILabel無法顯示其所有字母。 我的應用程序就像now my appUILabel無法顯示其所有字母
PhotoController(就是這個頁面)是
import Foundation
import MobileCoreServices
import UIKit
class PhotoController:UIViewController,UINavigationControllerDelegate,UIImagePickerControllerDelegate{
@IBOutlet weak var label: UILabel!
@IBOutlet weak var myImageView: UIImageView!
private var imagePicker:UIImagePickerController!
override func viewDidLoad() {
super.viewDidLoad()
label.text = "Tap the PhotoSelect or Camera to upload a picture"
//myImageUploadRequest()
}
所以,
label.text = "Tap the PhotoSelect or Camera to upload a picture"
所有字母在我的應用程序沒有顯示。
我應該怎麼做才能解決這個問題?
label.numberOfLines = 0;默認情況下,UILabel將只有1行。 – Developer
給number0fLines = 0 –
看到這個https://stackoverflow.com/questions/446405/adjust-uilabel-height-depending-on-the-text –