給 TextView 加個圓角

 給 TextView 加上圓角無疑會讓界面更漂亮更有蘋果味兒

 

 

   #import <QuartzCore/QuartzCore.h>

    [self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];
    [self.content.layer setBorderColor:[[UIColor grayColor] CGColor]];
    [self.content.layer setBorderWidth:1.0];
    [self.content.layer setCornerRadius:8.0];
    [self.content.layer setMasksToBounds:YES];
    self.content.clipsToBounds = YES;

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章