[ios] 취소 선 텍스트가있는 UILabel을 어떻게 만들 수 있습니까?

UILabel텍스트가 이런 식 으로 만들고 싶습니다

여기에 이미지 설명 입력

어떻게 할 수 있습니까? 텍스트가 작 으면 줄도 작아야합니다.



답변

SWIFT 4 업데이트 코드

let attributeString: NSMutableAttributedString =  NSMutableAttributedString(string: "Your Text")
    attributeString.addAttribute(NSAttributedString.Key.strikethroughStyle, value: 2, range: NSMakeRange(0, attributeString.length))

그때:

yourLabel.attributedText = attributeString

문자열의 일부를 쳐서 범위를 제공하려면

let somePartStringRange = (yourStringHere as NSString).range(of: "Text")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: somePartStringRange)

목표 -C

에서 아이폰 OS 6.0> UILabel 지원NSAttributedString

NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:@"Your String here"];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
                        value:@2
                        range:NSMakeRange(0, [attributeString length])];

빠른

let attributeString: NSMutableAttributedString =  NSMutableAttributedString(string: "Your String here")
attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))

정의 :

- (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)aRange

Parameters List:

name : 속성 이름을 지정하는 문자열입니다. 속성 키는 다른 프레임 워크에서 제공하거나 사용자가 정의한 사용자 정의 키일 수 있습니다. 시스템 제공 속성 키를 찾을 수있는 위치에 대한 정보는 NSAttributedString 클래스 참조의 개요 섹션을 참조하십시오.

value : 이름과 관련된 속성 값입니다.

aRange : 지정된 속성 / 값 쌍이 적용되는 문자 범위입니다.

그때

yourLabel.attributedText = attributeString;

들어 lesser than iOS 6.0 versions당신이 필요로 3-rd party component이 작업을 수행 할 수 있습니다. 그중 하나는 TTTAttributedLabel 이고 다른 하나는 OHAttributedLabel 입니다.


답변

Swift에서 단일 취소 선 스타일에 열거 형 사용 :

let attrString = NSAttributedString(string: "Label Text", attributes: [NSStrikethroughStyleAttributeName: NSUnderlineStyle.StyleSingle.rawValue])
label.attributedText = attrString

추가 취소 선 스타일 ( .rawValue를 사용하여 열거 형에 액세스해야 함 ) :

  • NSUnderlineStyle.StyleNone
  • NSUnderlineStyle.StyleSingle
  • NSUnderlineStyle.StyleThick
  • NSUnderlineStyle.StyleDouble

취소 선 패턴 (스타일과 OR로 연결됨) :

  • NSUnderlineStyle.PatternDot
  • NSUnderlineStyle.PatternDash
  • NSUnderlineStyle.PatternDashDot
  • NSUnderlineStyle.PatternDashDotDot

취소 선이 공백이 아닌 단어 전체에만 적용되도록 지정합니다.

  • NSUnderlineStyle.ByWord

답변

이 간단한 경우 NSAttributedString보다 선호합니다 NSMutableAttributedString.

NSAttributedString * title =
    [[NSAttributedString alloc] initWithString:@"$198"
                                    attributes:@{NSStrikethroughStyleAttributeName:@(NSUnderlineStyleSingle)}];
[label setAttributedText:title];

속성 문자열 의 NSUnderlineStyleAttributeNameNSStrikethroughStyleAttributeName속성을 모두 지정하기위한 상수 :

typedef enum : NSInteger {
  NSUnderlineStyleNone = 0x00,
  NSUnderlineStyleSingle = 0x01,
  NSUnderlineStyleThick = 0x02,
  NSUnderlineStyleDouble = 0x09,
  NSUnderlinePatternSolid = 0x0000,
  NSUnderlinePatternDot = 0x0100,
  NSUnderlinePatternDash = 0x0200,
  NSUnderlinePatternDashDot = 0x0300,
  NSUnderlinePatternDashDotDot = 0x0400,
  NSUnderlineByWord = 0x8000
} NSUnderlineStyle;  


답변

Swift 5.0의 취소 선

let attributeString =  NSMutableAttributedString(string: "Your Text")
attributeString.addAttribute(NSAttributedString.Key.strikethroughStyle,
                                     value: NSUnderlineStyle.single.rawValue,
                                         range: NSMakeRange(0, attributeString.length))
self.yourLabel.attributedText = attributeString

그것은 나를 위해 매력처럼 작동했습니다.

확장으로 사용

extension String {
    func strikeThrough() -> NSAttributedString {
        let attributeString =  NSMutableAttributedString(string: self)
        attributeString.addAttribute(
            NSAttributedString.Key.strikethroughStyle,
               value: NSUnderlineStyle.single.rawValue,
                   range:NSMakeRange(0,attributeString.length))
        return attributeString
    }
}

이렇게 부르세요

myLabel.attributedText = "my string".strikeThrough()

취소 선 활성화 / 비활성화에 대한 UILabel 확장.

extension UILabel {

func strikeThrough(_ isStrikeThrough:Bool) {
    if isStrikeThrough {
        if let lblText = self.text {
            let attributeString =  NSMutableAttributedString(string: lblText)
            attributeString.addAttribute(NSAttributedString.Key.strikethroughStyle, value: NSUnderlineStyle.single.rawValue, range: NSMakeRange(0,attributeString.length))
            self.attributedText = attributeString
        }
    } else {
        if let attributedStringText = self.attributedText {
            let txt = attributedStringText.string
            self.attributedText = nil
            self.text = txt
            return
        }
    }
    }
}

다음과 같이 사용하십시오.

   yourLabel.strikeThrough(btn.isSelected) // true OR false


답변

SWIFT 코드

let attributeString: NSMutableAttributedString =  NSMutableAttributedString(string: "Your Text")
    attributeString.addAttribute(NSStrikethroughStyleAttributeName, value: 2, range: NSMakeRange(0, attributeString.length))

그때:

yourLabel.attributedText = attributeString

Prince 답변 덕분에 😉


답변

SWIFT 4

    let attributeString: NSMutableAttributedString =  NSMutableAttributedString(string: "Your Text Goes Here")
    attributeString.addAttribute(NSAttributedStringKey.strikethroughStyle, value: NSUnderlineStyle.styleSingle.rawValue, range: NSMakeRange(0, attributeString.length))
    self.lbl_productPrice.attributedText = attributeString

다른 방법은 문자열 확장 확장 을 사용하는 것입니다.

extension String{
    func strikeThrough()->NSAttributedString{
        let attributeString: NSMutableAttributedString =  NSMutableAttributedString(string: self)
        attributeString.addAttribute(NSAttributedStringKey.strikethroughStyle, value: NSUnderlineStyle.styleSingle.rawValue, range: NSMakeRange(0, attributeString.length))
        return attributeString
    }
}

함수 호출 : 그렇게 사용

testUILabel.attributedText = "Your Text Goes Here!".strikeThrough()

@Yahya에 대한 크레딧-2017 년 12 월 업데이트 @kuzdu에 대한
크레딧 -2018 년 8 월 업데이트


답변

NSMutableAttributedString을 사용하여 IOS 6에서 할 수 있습니다.

NSMutableAttributedString *attString=[[NSMutableAttributedString alloc]initWithString:@"$198"];
[attString addAttribute:NSStrikethroughStyleAttributeName value:[NSNumber numberWithInt:2] range:NSMakeRange(0,[attString length])];
yourLabel.attributedText = attString;