cocos2d-x中uilabel怎么設(shè)置對齊方式
2 回答

暮色呼如
TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超9個(gè)贊
基本上ios中用到文字的空間都有屬性來控制文本對其的方式的,其中UILabel的對其方式是
label1.textAlignment = UITextAlignmentCenter;
文本對齊方式有以下三種
typedef enum {
UITextAlignmentLeft = 0,左對齊
UITextAlignmentCenter,居中對齊
UITextAlignmentRight, 右對齊
} UITextAlignment;
按鈕對其的方式是:
button.titleLabel.textAlignment = NSTextAlignmentCenter;
typedef enum {
UITextAlignmentLeft = 0,左對齊
UITextAlignmentCenter,居中對齊
UITextAlignmentRight, 右對齊
} UITextAlignment;
- 2 回答
- 0 關(guān)注
- 1710 瀏覽
添加回答
舉報(bào)
0/150
提交
取消