为了账号安全,请及时绑定邮箱和手机立即绑定

UIButton中addSubview后,UIButton中的文字为什么显示在添加的View的上方

UIButton中addSubview后,UIButton中的文字为什么显示在添加的View的上方

iOS
慕神7243989 2018-04-19 13:56:56
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(i*100,  0, 100,40)];NSString *buttonTitle = [types objectAtIndex:i];[button setTitle:buttonTitle forState:UIControlStateNormal];[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];[button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];//区分不同的button  1、可以根据frame的位置 2 设置tagbutton.tag = 10000+i;button.titleLabel.font = [UIFont systemFontOfSize:15.0];[scrollView addSubview:button];if (i==0) {button.layer.borderColor = [UIColor cyanColor].CGColor;button.layer.borderWidth = 2.0;button.layer.cornerRadius = 5.0;//CGPoint 只定义promptview的位置  宽高由文字大小定义PromptView *promptView = [[PromptView alloc] initWithPoint:CGPointMake(button.frame.size.width-20, 0) message:5];[button addSubview:promptView];
查看完整描述

目前暂无任何回答

  • 0 回答
  • 0 关注
  • 1569 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信