ios-버튼 UIButton 텍스트 왼쪽 그림 오른쪽

1407 단어
iOS - 버튼 UIButton 텍스트 왼쪽 그림 오른쪽: 두 가지 실현 방식
방법1:
코드 완성: 단추에 속성이 있습니다. semantic Content Attribute. 단추에 값을 붙이면 됩니다.그러나 주의해야 할 것은 iOS9 이상의 버전을 지원한다는 것이다.
       :
self.nextButton.semanticContentAttribute = UISemanticContentAttributeForceRightToLeft
             :
//    CGFloat margin = (viewWidth - CGRectGetWidth(self.bindButton.imageView.frame) - CGRectGetWidth(self.bindButton.titleLabel.frame)) *0.5;
//    CGFloat marginGay = 22;
//    self.bindButton.imageEdgeInsets = UIEdgeInsetsMake(0, marginGay, 0, margin - marginGay);

방법2:
이미지와 문자의 속성을 각각 설정합니다: 이미지EdgeInsets, titleEdgeInsets, iOS 버전 문제가 없습니다.
//   size
CGSize textSize = [self.bindButton.titleLabel.text sizeWithFont:self.bindButton.titleLabel.font];//   iOS7.0
CGSize textSize = [self.bindButton.titleLabel.text sizeWithAttributes:@{NSFontAttributeName:self.bindButton.titleLabel.font}];//iOS7.0+
CGSize imageSize = self.bindButton.currentImage.size;
CGFloat marginGay = 10;//          
self.bindButton.imageEdgeInsets = UIEdgeInsetsMake(0, textSize.width + marginGay - imageSize.width, 0, - textSize.width - marginGay + imageSize.width);
self.bindButton.titleEdgeInsets = UIEdgeInsetsMake(0, - imageSize.width - marginGay, 0, imageSize.width + marginGay);
//        
self.bindButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentRight;

2017년 7월 20일 목요일.

좋은 웹페이지 즐겨찾기