美文网首页UILabel
我已经阅读并接受用户使用协议

我已经阅读并接受用户使用协议

作者: 失忆的程序员 | 来源:发表于2017-10-31 17:24 被阅读7次

// 协议 label

UILabel *xieyiL = [[UILabel alloc] initWithFrame:CGRectMake(bottomView.height/3, 0, bottomView.width - 40 - bottomView.height/3, bottomView.height/3)];

xieyiL.textAlignment = NSTextAlignmentLeft;

xieyiL.font = Font(12);

NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"我已经阅读并接受用户使用协议"];

[str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12.0] range:NSMakeRange(8, 6)];

[str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(8, 6)];

//加下划线

[str addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(8, 6)];

xieyiL.attributedText = str;

[bottomView addSubview:xieyiL];

UIButton *xieyiBtn = [[UIButton alloc] initWithFrame:CGRectMake(bottomView.height/3, 0, bottomView.width - 40 - bottomView.height/3, bottomView.height/3)];

[xieyiBtn addTarget:self action:@selector(bottomBtnClick:) forControlEvents:(UIControlEventTouchUpInside)];

xieyiBtn.tag = 4001;

[bottomView addSubview:xieyiBtn];

相关文章

  • 我已经阅读并接受用户使用协议

    // 协议 label UILabel *xieyiL = [[UILabel alloc] initWithFr...

  • Privacy agreement

    用户注册协议 在此特别提醒使用者认真阅读、充分理解本《服务协议》(下称《协议》)中各条款。请阅读并选择接受或不接受...

  • 猫狗付费会员协议

    温馨提示:用户应于注册前仔细阅读本《付费会员协议》和《用户协议》、《隐私政策》,用户通过进入注册程序并点击“我接受...

  • 用户协议及隐私条约

    用户协议 尊敬的用户,在使用前请您阅读如下服务协议,使用本应用即表示您同意接受本协议,本协议产生法律效力,特别涉及...

  • 用户使用协议

    您使用本网站的服务即视为您已仔细阅读并充分了解前述协议的内容,并同意接受上述协议的约束。除非您已阅读并接受本协议所...

  • 2020-08-03

    《隐私政策》和《用户协议》 为您使用本软件及服务,您应当阅读并遵守《隐私政策》和《用户协议》。请您务必审慎阅读、充...

  • 2020-09-17

    《隐私政策》和《用户协议》 为您使用本软件及服务,您应当阅读并遵守《隐私政策》和《用户协议》。请您务必审慎阅读、充...

  • 用户协议与隐私政策

    为使用Fil Block APP(以下简称“我们”或“Fil Block”)的服务,用户应当阅读并遵守《用户协议与...

  • 逗影《用户注册协议》

    欢迎使用逗影,在使用逗影之前请您仔细阅读本用户协议。逗影感谢您的支持和信任! 一、注册协议条款的确认和接受 本用户...

  • 微北洋用户许可使用协议

    请您本产品之前,请务必仔细阅读并理解《用户许可使用协议》(以下简称“本协议”)中规定的多有权利和限制。 使用 l ...

网友评论

    本文标题:我已经阅读并接受用户使用协议

    本文链接:https://www.haomeiwen.com/subject/minbpxtx.html