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

牛魔王的故事
TA貢獻(xiàn)1830條經(jīng)驗 獲得超3個贊
基本上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)注
- 815 瀏覽
添加回答
舉報
0/150
提交
取消