zl程序教程

您现在的位置是:首页 >  其它

当前栏目

自定义圆角按钮

自定义 按钮 圆角
2023-09-27 14:21:34 时间

  

    //放置按钮

    //登录

    _loginButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    _loginButton.frame = CGRectMake(20, 300, 280, 35);

    _loginButton.backgroundColor = [UIColor blueColor];

    [_loginButton setTitle:@"登录" forState:UIControlStateNormal];

    //自定义 圆角按钮

    [_loginButton.layer setMasksToBounds:YES];

    [_loginButton.layer setCornerRadius:4.0];

    //[_loginButton.layer setBorderWidth:1.0];

    

    [self addSubview:_loginButton];