iOS 給按鈕改字型大小。

2021-09-01 14:10:15 字數 1108 閱讀 8837

在ios程式中設定uibutton的字型大小

btn.frame = cgrectmake(x, y, width, height);

[btn settitle: @"search" forstate: uicontrolstatenormal];

//設定按鈕上的自體的大小

//[btn setfont: [uifont systemfontsize: 14.0]]; //這種可以用來設定字型的大小,但是可能會在將來的sdk版本中去除改方法

//應該使用

btn.titlelabel.font = [uifont systemfontofsize: 14.0];

[btn sebackgroundcolor: [uicolor bluecolor]];

//最後將按鈕加入到指定檢視superview

[superview addsubview: btn];

附:建立按鈕的兩種方法:

1、動態建立

btnfont = [uibutton buttonwithtype:uibuttontyperoundedrect];

[btnfont setframe:cgrectmake(100, 10, 120, 40)];

[btnfont addtarget:self action:nil forcontrolevents:uicontroleventtouchupinside];

[btnfont settitle:@"字型" forstate:uicontrolstatenormal];

btnfont.backgroundcolor=[uicolor clearcolor];

[self.view addsubview:btnfont];

2、在xib檔案中已經建立好,通過tag獲取按鈕

uibutton *testbutton= (uibutton*)[self.view viewwithtag:100];

[testbutton addtarget:self action:@selector(test:) forcontrolevents:uicontroleventtouchupinside];

註冊事件

-(void) test: (id) sender

oracle改字型大小 sqlplus改字型

sqlplus font,其值為 terminal sqlplus font size,其值為14,或其他大小的值,如16 18等。問題3 在sql plus中改變字型和字符集 問題描述 有時,sql plus中顯示的資料字型太小,怎樣改變sql plus中顯示的字型大小?問題分析 oracle中所...

改一下字型大小

我在使用visual studio 2005 professional程式設計語句時字型太小了 我想改一下字型 可是當我打看工具 選項 顏色字型時 報了乙個錯 我點了 是 過後我修改字型時不管我怎樣修改,程式設計的字型都沒有變化。附 我剛安裝的visual studio 2005 professio...

iOS 字型大小適配

ios 字型大小適配 1 用巨集定義適配字型大小 根據螢幕尺寸判斷 1 方法 巨集定義 define screen width uiscreen mainscreen bounds.size.width define font size size uifont systemfontofsize fo...