uitextview *content = [[uitextview alloc] initwithframe: cgrectmake(10, 210, 300, 100)];
content.text = @"親愛的怡樂會媽媽會員,愛怡樂會員中心每月25-31日集中處理會員的怡寶兌換申請,兌換的產品將在下個月的1-5日發出,預計10日前送達,請您注意查收!每月25-31日期間產生的兌換申請將自動轉到下月兌換。";
content.font = [uifont systemfontofsize: 18.0f];
content.editable = no;
content.textalignment = uitextalignmentleft;
content.backgroundcolor = [uicolor clearcolor];
content.layer.bordercolor = [uicolor blackcolor].cgcolor;
content.layer.borderwidth = 1.2f;
content.layer.cornerradius = 6;
content.layer.maskstobounds = yes;
content.clipstobounds = yes;
[self.view addsubview: content];
[content release];
圓角黑色邊框
UITextView新增圓角邊框
今天因為專案需要,用了一下uitextview,在nib設定裡面找半天找不到uitextview的邊框風格之類的設定。網上google了一番,有些給出了一些解決辦法,就是在uitextview下面加乙個有圓角邊框的檢視,例如uibutton,uitextfield等,也有人說過載,自己畫邊框。個人覺...
UITextView新增圓角邊框
今天因為專案需要,用了一下uitextview,在nib設定裡面找半天找不到uitextview的邊框風格之類的設定。網上google了一番,有些給出了一些解決辦法,就是在uitextview下面加乙個有圓角邊框的檢視,例如uibutton,uitextfield等,也有人說過載,自己畫邊框。個人覺...
支援圓角 描邊的ImageView
圓角的半徑,依次為左上角xy半徑,右上角,右下角,左下角 private float rids private float round,roundlefttop,roundrighttop,roundleftbottom,roundrightbottom 描邊寬度 private float str...