UILabel cannot show its all letters. My app is like now my app
PhotoController (it is for this page)is
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()
}
So,all letter of
label.text = "Tap the PhotoSelect or Camera to upload a picture"
is not shown in my app.
What should I do to fix this?