`
iaiai
  • 浏览: 2135941 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

UIButton按钮图片在上文字在下

 
阅读更多
UIButton按钮图片在上文字在下
    UIButton* locationBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 320/2, 55)];
    [locationBtn setImage:[UIImage imageNamed:@"location.png"] forState:UIControlStateNormal];
    [locationBtn.imageView setFrame:CGRectMake(0, 0, 50, 80)];
    [locationBtn setTitle:@"定位" forState:UIControlStateNormal];
    locationBtn.imageEdgeInsets = UIEdgeInsetsMake(-10,40,0,0);
    locationBtn.titleEdgeInsets = UIEdgeInsetsMake(30,0,0,0);
    [locationBtn.titleLabel setTextAlignment:NSTextAlignmentCenter];
    [locationBtn.titleLabel setFont:[UIFont systemFontOfSize:12]];
    [scrollView addSubview:locationBtn];
    
    UIButton* tjBtn = [[UIButton alloc] initWithFrame:CGRectMake(320/2, 0, 320/2, 55)];
    [tjBtn setImage:[UIImage imageNamed:@"location.png"] forState:UIControlStateNormal];
    [tjBtn.imageView setFrame:CGRectMake(0, 0, 50, 80)];
    [tjBtn setTitle:@"报名人数统计" forState:UIControlStateNormal];
    tjBtn.imageEdgeInsets = UIEdgeInsetsMake(-10,40,0,0);
    tjBtn.titleEdgeInsets = UIEdgeInsetsMake(30,-45,0,0);
    [tjBtn.titleLabel setTextAlignment:NSTextAlignmentCenter];
    [tjBtn.titleLabel setFont:[UIFont systemFontOfSize:12]];
    [scrollView addSubview:tjBtn];


  • 大小: 11 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics