ios實現(xiàn)圓角跑揉、陰影和邊框共存

Swift版寫法在個人主頁Swift集合中
由于使用masksToBounds切圓角時投影的效果會消失,所以這里的思路是通過layer來設(shè)置埠巨。


Simulator Screen Shot - iPhone 12 - 2022-01-21 at 15.59.50.png

如上圖所示历谍,接下來分別實現(xiàn)無邊框陰影、漸變背景色+圓角陰影和邊框圓角陰影
以下屬性可根據(jù)自身需求進行相應(yīng)調(diào)整:

shadowColor // 陰影顏色
shadowOffset  // 陰影偏移量
shadowOpacity  // 陰影透明度
shadowRadius  // 陰影半徑

如上圖(1-1)辣垒,無邊框陰影效果實現(xiàn):

-(UIView *)bgView{
    if (!_bgView) {
        _bgView = [[UIView alloc]initWithFrame:CGRectMake(50, 200, [UIScreen mainScreen].bounds.size.width-100, 100)];
    }
    return _bgView;
}
[self.view addSubview:self.bgView];
[self setViewShadow:self.bgView];
- (void)setViewShadow:(UIView *)curView{
    curView.backgroundColor = [UIColor whiteColor];
    curView.layer.shadowColor = [UIColor colorWithRed:129/255.0 green:174/255.0 blue:254/255.0 alpha:0.28].CGColor;
    curView.layer.shadowOffset = CGSizeMake(0,2);
    curView.layer.shadowOpacity = 1;
    curView.layer.shadowRadius = 14;
    curView.layer.cornerRadius = 4;
}

如上圖(1-2)望侈,漸變背景色+圓角陰影效果實現(xiàn):

-(UIButton *)loginBtn{
    if (!_loginBtn) {
        _loginBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        _loginBtn.frame = CGRectMake(50, CGRectGetMaxY(self.bgView.frame)+50, [UIScreen mainScreen].bounds.size.width-100, 50);
        [_loginBtn setTitle:@"登錄" forState:UIControlStateNormal];
        [_loginBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    }
    return _loginBtn;
}
[self.view addSubview:self.loginBtn];
[self setViewColorShadow:self.loginBtn];
- (void)setViewColorShadow:(UIView *)curView{
  //漸變背景色設(shè)置
    CAGradientLayer *gl = [CAGradientLayer layer];
 /*
          注意: 若是用的xib布局發(fā)現(xiàn)寬/高不匹配,可重置gradient.frame = CGRectMake(0, 0, view的寬度,  view的高度)
         */
    gl.frame = curView.bounds;
    gl.startPoint = CGPointMake(0, 0);
    gl.endPoint = CGPointMake(1, 1);
    gl.colors = @[(__bridge id)[UIColor colorWithRed:10/255.0 green:182/255.0 blue:254/255.0 alpha:1.0].CGColor,(__bridge id)[UIColor colorWithRed:73/255.0 green:90/255.0 blue:255/255.0 alpha:1.0].CGColor];
    gl.locations = @[@(0.0),@(1.0f)];
    //圓角陰影設(shè)置
    gl.shadowColor = [UIColor colorWithRed:51/255.0 green:145/255.0 blue:255/255.0 alpha:0.4].CGColor;
    gl.shadowOffset = CGSizeMake(0,6);
    gl.shadowOpacity = 1;
    gl.shadowRadius = 7;
    gl.cornerRadius = curView.bounds.size.height*0.5;
    [curView.layer addSublayer:gl];
}

如上圖(1-3)勋桶,邊框圓角陰影效果實現(xiàn):

-(UIButton *)borderBtn{
    if (!_borderBtn) {
        _borderBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        _borderBtn.frame = CGRectMake(100, CGRectGetMaxY(self.loginBtn.frame)+50, [UIScreen mainScreen].bounds.size.width-200, 50);
        [_borderBtn setTitle:@"獲取驗證碼" forState:UIControlStateNormal];
        [_borderBtn setTitleColor:[UIColor colorWithRed:2/255.0 green:116/255.0 blue:223/255.0 alpha:1.0] forState:UIControlStateNormal];
    }
    return _borderBtn;
}
[self.view addSubview:self.borderBtn];
[self setViewBorderShadow:self.borderBtn];
- (void)setViewBorderShadow:(UIView *)curView{
    curView.backgroundColor = [UIColor whiteColor];
    curView.layer.shadowColor = [UIColor colorWithRed:51/255.0 green:145/255.0 blue:255/255.0 alpha:0.4].CGColor;
    curView.layer.shadowOffset = CGSizeMake(0,3);
    curView.layer.shadowOpacity = 1;
    curView.layer.shadowRadius = 5;
    curView.layer.borderWidth = 1;
    curView.layer.borderColor = [UIColor colorWithRed:2/255.0 green:119/255.0 blue:228/255.0 alpha:1.0].CGColor;
    curView.layer.cornerRadius = curView.bounds.size.height*0.5;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
禁止轉(zhuǎn)載脱衙,如需轉(zhuǎn)載請通過簡信或評論聯(lián)系作者。
  • 序言:七十年代末哥遮,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子陵究,更是在濱河造成了極大的恐慌眠饮,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件铜邮,死亡現(xiàn)場離奇詭異仪召,居然都是意外死亡寨蹋,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進店門扔茅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來已旧,“玉大人,你說我怎么就攤上這事召娜≡送剩” “怎么了?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵玖瘸,是天一觀的道長秸讹。 經(jīng)常有香客問我,道長雅倒,這世上最難降的妖魔是什么璃诀? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮蔑匣,結(jié)果婚禮上劣欢,老公的妹妹穿的比我還像新娘。我一直安慰自己裁良,他們只是感情好凿将,可當我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著趴久,像睡著了一般丸相。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上彼棍,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天灭忠,我揣著相機與錄音,去河邊找鬼座硕。 笑死弛作,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的华匾。 我是一名探鬼主播映琳,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼蜘拉!你這毒婦竟也來了萨西?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤旭旭,失蹤者是張志新(化名)和其女友劉穎谎脯,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體持寄,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡源梭,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年娱俺,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片废麻。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡荠卷,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出烛愧,到底是詐尸還是另有隱情油宜,我是刑警寧澤,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布屑彻,位于F島的核電站验庙,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏社牲。R本人自食惡果不足惜粪薛,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望搏恤。 院中可真熱鬧违寿,春花似錦、人聲如沸熟空。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽息罗。三九已至掂咒,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間迈喉,已是汗流浹背绍刮。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留挨摸,地道東北人孩革。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像得运,于是被迫代替她去往敵國和親膝蜈。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容