ฉันจะจัดแนวข้อความได้UILabel
อย่างไร?
ฉันจะจัดแนวข้อความได้UILabel
อย่างไร?
คำตอบ:
ตั้งแต่iOS 6 ขึ้นไปUITextAlignment
จะเลิกใช้ ใช้NSTextAlignment
myLabel.textAlignment = NSTextAlignmentCenter;
Swift Version จาก iOS 6 และใหม่กว่า
myLabel.textAlignment = .center
นี่คือตัวอย่างรหัสที่แสดงวิธีจัดแนวข้อความโดยใช้ UILabel:
label = [[UILabel alloc] initWithFrame:CGRectMake(60, 30, 200, 12)];
label.textAlignment = NSTextAlignmentCenter;
คุณสามารถอ่านเพิ่มเติมได้ที่นี่UILabel
UITextAlignment
เลิกใช้แล้วตั้งแต่ iOS 5 ใช้NSTextAlignment
แทน
// Deprecated: use NSTextAlignment enum in UIKit/NSText.h typedef NS_ENUM(NSInteger, UITextAlignment) { UITextAlignmentLeft = 0, UITextAlignmentCenter, UITextAlignmentRight, // could add justified in future } NS_DEPRECATED_IOS(2_0,6_0);
หากต้องการจัดกึ่งกลางข้อความใน UILabel ใน Swift (ซึ่งกำหนดเป้าหมายสำหรับ iOS 7 ขึ้นไป) คุณสามารถทำได้:
myUILabel.textAlignment = .Center
หรือ
myUILabel.textAlignment = NSTextAlignment.Center
หมายเหตุ: ตามการอ้างอิงระดับ UILabelเป็นของ iOS 6 วิธีการนี้เลิกใช้แล้ว
เพียงใช้textAlignment
คุณสมบัตินี้เพื่อดูการจัดตำแหน่งที่ต้องการโดยใช้หนึ่งในUITextAlignment
ค่า ( UITextAlignmentLeft
, UITextAlignmentCenter
หรือUITextAlignmentRight
.)
เช่น: [myUILabel setTextAlignment:UITextAlignmentCenter];
ดูการอ้างอิงคลาส UILabelสำหรับข้อมูลเพิ่มเติม
ใช้yourLabel.textAlignment = NSTextAlignmentCenter;
สำหรับ iOS> = 6.0 และyourLabel.textAlignment = UITextAlignmentCenter;
สำหรับ iOS <6.0
สำหรับ Swift 3 มันคือ:
label.textAlignment = .center
IO6.1
[lblTitle setTextAlignment:NSTextAlignmentCenter];
Label.textAlignment = NSTextAlignmentCenter;
ใน xamarin ios สมมติว่าชื่อเลเบลของคุณคือ title จากนั้นทำดังต่อไปนี้
title.TextAlignment = UITextAlignment.Center;
UITextAlignment
จะเลิกใช้ใน iOS 6 !
ในSwift 4.2และ Xcode 10
let lbl = UILabel(frame: CGRect(x: 10, y: 50, width: 230, height: 21))
lbl.textAlignment = .center //For center alignment
lbl.text = "This is my label fdsjhfg sjdg dfgdfgdfjgdjfhg jdfjgdfgdf end..."
lbl.textColor = .white
lbl.backgroundColor = .lightGray//If required
lbl.font = UIFont.systemFont(ofSize: 17)
//To display multiple lines in label
lbl.numberOfLines = 0
lbl.lineBreakMode = .byWordWrapping
lbl.sizeToFit()//If required
yourView.addSubview(lbl)