UIButton旋钮图片在上文字在下

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];


UIButton旋钮图片在上文字在下