UIView加邊框及邊框顏色
引用庫:
復制代碼 代碼如下:
#import <QuartzCore/QuartzCore.h>
使用:
復制代碼 代碼如下:
//添加邊框和提示
CGRect frameRect = CGRectMake(20, 90, self.window.frame.size.width-40, self.window.frame.size.height-180);
UIView *frameView = [[UIView alloc] initWithFrame:frameRect] ;
frameView.layer.borderWidth = 1;
frameView.layer.borderColor = [[UIColor whiteColor] CGColor];
設置UIView的邊框為圓角
在實際的應用中,總感覺圓角的東西比較好看, 像button,label,image等等,以前的時候我就經常給那些控件添加一個UIImageView作為背景,再搞張圓角的圖片,不過今天發現了新方法看代碼
復制代碼 代碼如下:
viewT.layer.cornerRadius = 10;//設置那個圓角的有多圓
viewT.layer.borderWidth = 10;//設置邊框的寬度,當然可以不要
viewT.layer.borderColor = [[UIColor redColor] CGColor];//設置邊框的顏色
viewT.layer.masksToBounds = YES;//設為NO去試試
其實的viewT是UIView的實例,當然也可以是他的子類實例哈。
最後別忘記添加QuartzCore.framework這個庫,還有在你的文件中包含#import <QuartzCore/QuartzCore.h>這句哦