UILabelに小さいアイコンを埋め込む方法


153

UILabeliOS7 に小さなアイコン(カスタムの箇条書きの一種)を埋め込む必要があります。インターフェイスデザイナーでこれを行うにはどうすればよいですか?または、少なくともコードでは?

アンドロイドであるleftDrawablerightDrawableラベルのために、それはiOSの中でどのように行われますか?Androidのサンプル:

androidサンプル


私はAndroidに不慣れですが、参照用に画像を投稿できますか?
user1673099 2013年

2
小さなイメージビューを作成し、サブビューとしてラベルのオブジェクトに追加します
Saurabh Passolia '11 / 10/13

回答:


292

これは、TextKitの一部であるiOS 7のテキスト添付ファイルを使用して行うことができます。いくつかのサンプルコード:

NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
attachment.image = [UIImage imageNamed:@"MyIcon.png"];

NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment];

NSMutableAttributedString *myString= [[NSMutableAttributedString alloc] initWithString:@"My label text"];
[myString appendAttributedString:attachmentString];

myLabel.attributedText = myString;

iOS6はどうですか?何か提案はありますか?Thx
Steven Jiang

1
@StevenJiang:UIImageViewラベルにを追加するだけです
Scott Berrevoets

1
残念ながら、これはテキストの後にアイコンを配置します。方法が見つからないので、これをテキストの前に移動できる可能性はありますか?
2014

4
@reVerse画像(添付文字列)をテキスト文字列に追加する代わりに、逆にして、テキスト文字列を添付文字列に追加することもできます。
Scott Berrevoets、2014

11
すでにこれを昨日試しました。今は機能するので、何かを逃したようです。ありがとう。同じことを達成しようとしているすべての人のために(少し異なるため): NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment]; NSMutableAttributedString *myString = [[NSMutableAttributedString alloc] initWithAttributedString:attachmentString]; NSAttributedString *myText = [[NSMutableAttributedString alloc] initWithString:text]; [myString appendAttributedString:myText];
reVerse

153

UILabelにアイコンを埋め込む方法は次のとおりです。

また、アイコン整列するには、attachment.boundsを使用します


Swift 5.1

// Create Attachment
let imageAttachment = NSTextAttachment()
imageAttachment.image = UIImage(named:"iPhoneIcon")
// Set bound to reposition
let imageOffsetY: CGFloat = -5.0
imageAttachment.bounds = CGRect(x: 0, y: imageOffsetY, width: imageAttachment.image!.size.width, height: imageAttachment.image!.size.height)
// Create string with attachment
let attachmentString = NSAttributedString(attachment: imageAttachment)
// Initialize mutable string
let completeText = NSMutableAttributedString(string: "")
// Add image to mutable string
completeText.append(attachmentString)
// Add your text to mutable string
let textAfterIcon = NSAttributedString(string: "Using attachment.bounds!")
completeText.append(textAfterIcon)
self.mobileLabel.textAlignment = .center
self.mobileLabel.attributedText = completeText

Objective-Cバージョン

NSTextAttachment *imageAttachment = [[NSTextAttachment alloc] init];
imageAttachment.image = [UIImage imageNamed:@"iPhoneIcon"];
CGFloat imageOffsetY = -5.0;
imageAttachment.bounds = CGRectMake(0, imageOffsetY, imageAttachment.image.size.width, imageAttachment.image.size.height);
NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:imageAttachment];
NSMutableAttributedString *completeText = [[NSMutableAttributedString alloc] initWithString:@""];
[completeText appendAttributedString:attachmentString];
NSAttributedString *textAfterIcon = [[NSAttributedString alloc] initWithString:@"Using attachment.bounds!"];
[completeText appendAttributedString:textAfterIcon];
self.mobileLabel.textAlignment = NSTextAlignmentRight;
self.mobileLabel.attributedText = completeText;

ここに画像の説明を入力してください

ここに画像の説明を入力してください


22
attachment.boundsに投票
Peter Zhao

3
attachment.boundsを使用する上で非常に役立ちます。それがまさに私が探していたものです。
Geoherna 2016年

2
実際、固定値-5.0を使用する代わりに、imageOffsetYを計算できます。let imageOffsetY:CGFloat =-(imageAttachment.image!.size.height-self.mobileLabel.font.pointSize)/ 2.0;
JonSlowCN 2018年

注:コンパイル時間が遅くなります
ジャック、

ストーリーボードでできますか?
アウグスト

53

Swift 4.2:

let attachment = NSTextAttachment()        
attachment.image = UIImage(named: "yourIcon.png")
let attachmentString = NSAttributedString(attachment: attachment)
let myString = NSMutableAttributedString(string: price)
myString.append(attachmentString)
label.attributedText = myString

23

参照画像はボタンのように見えます。試してください(Interface Builderでも実行できます):

ここに画像の説明を入力してください

UIButton* button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setFrame:CGRectMake(50, 50, 100, 44)];
[button setImage:[UIImage imageNamed:@"img"] forState:UIControlStateNormal];
[button setImageEdgeInsets:UIEdgeInsetsMake(0, -30, 0, 0)];
[button setTitle:@"Abc" forState:UIControlStateNormal];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[button setBackgroundColor:[UIColor yellowColor]];
[view addSubview:button];

よく説明されていますが、私はあなたが参照を提供するために時間をかけたという事実が好きです。とても助かりました!ありがとう
Shinnyx 14

これは、トロフィーアイコンをボタンに入れるのに役立ちました。どうもありがとう!
2016

23

Swift 3バージョン

let attachment = NSTextAttachment()
attachment.image = UIImage(named: "plus")
attachment.bounds = CGRect(x: 0, y: 0, width: 10, height: 10)
let attachmentStr = NSAttributedString(attachment: attachment)
let myString = NSMutableAttributedString(string: "")
myString.append(attachmentStr)
let myString1 = NSMutableAttributedString(string: "My label text")
myString.append(myString1)
lbl.attributedText = myString

UILabel拡張

extension UILabel {

    func set(text:String, leftIcon: UIImage? = nil, rightIcon: UIImage? = nil) {

        let leftAttachment = NSTextAttachment()
        leftAttachment.image = leftIcon
        leftAttachment.bounds = CGRect(x: 0, y: -2.5, width: 20, height: 20)
        if let leftIcon = leftIcon {
            leftAttachment.bounds = CGRect(x: 0, y: -2.5, width: leftIcon.size.width, height: leftIcon.size.height)
        }
        let leftAttachmentStr = NSAttributedString(attachment: leftAttachment)

        let myString = NSMutableAttributedString(string: "")

        let rightAttachment = NSTextAttachment()
        rightAttachment.image = rightIcon
        rightAttachment.bounds = CGRect(x: 0, y: -5, width: 20, height: 20)
        let rightAttachmentStr = NSAttributedString(attachment: rightAttachment)


        if semanticContentAttribute == .forceRightToLeft {
            if rightIcon != nil {
                myString.append(rightAttachmentStr)
                myString.append(NSAttributedString(string: " "))
            }
            myString.append(NSAttributedString(string: text))
            if leftIcon != nil {
                myString.append(NSAttributedString(string: " "))
                myString.append(leftAttachmentStr)
            }
        } else {
            if leftIcon != nil {
                myString.append(leftAttachmentStr)
                myString.append(NSAttributedString(string: " "))
            }
            myString.append(NSAttributedString(string: text))
            if rightIcon != nil {
                myString.append(NSAttributedString(string: " "))
                myString.append(rightAttachmentStr)
            }
        }
        attributedText = myString
    }
}

17

この機能の実装をここで迅速に行いました:https : //github.com/anatoliyv/SMIconLabel

コードは可能な限りシンプルです:

var labelLeft = SMIconLabel(frame: CGRectMake(10, 10, view.frame.size.width - 20, 20))
labelLeft.text = "Icon on the left, text on the left"

// Here is the magic
labelLeft.icon = UIImage(named: "Bell") // Set icon image
labelLeft.iconPadding = 5               // Set padding between icon and label
labelLeft.numberOfLines = 0             // Required
labelLeft.iconPosition = SMIconLabelPosition.Left // Icon position
view.addSubview(labelLeft)

これがどのように見えるかです:

SMIconLabelイメージ


13

UIlabel上記の回答を参照して画像をラベルに追加するSwift 4拡張機能

extension UILabel {
  func set(image: UIImage, with text: String) {
    let attachment = NSTextAttachment()
    attachment.image = image
    attachment.bounds = CGRect(x: 0, y: 0, width: 10, height: 10)
    let attachmentStr = NSAttributedString(attachment: attachment)

    let mutableAttributedString = NSMutableAttributedString()
    mutableAttributedString.append(attachmentStr)

    let textString = NSAttributedString(string: text, attributes: [.font: self.font])
    mutableAttributedString.append(textString)

    self.attributedText = mutableAttributedString
  }
}

NSAttributedString(string: " " + text, attributes: [.font: self.font])
Farzad '19

@grizzlyはアイコンとテキストの間にスペースを作成するためのものですか?
エージェントスミス

はい。アイコンとテキスト間のスペースのための別の方法は何ですか?
ファルザド2018

4

Swift 2.0バージョン:

//Get image and set it's size
let image = UIImage(named: "imageNameWithHeart")
let newSize = CGSize(width: 10, height: 10)

//Resize image
UIGraphicsBeginImageContextWithOptions(newSize, false, 0.0)
image?.drawInRect(CGRectMake(0, 0, newSize.width, newSize.height))
let imageResized = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()

//Create attachment text with image
var attachment = NSTextAttachment()
attachment.image = imageResized
var attachmentString = NSAttributedString(attachment: attachment)
var myString = NSMutableAttributedString(string: "I love swift ")
myString.appendAttributedString(attachmentString)
myLabel.attributedText = myString

3

UIViewをIBの画面にドラッグしてみてください。そこからドラッグすることができますUIImageViewし、UILabel先ほど作成したビューに。UIImageViewプロパティインスペクターでの画像をカスタムの箇条書き画像(ナビゲーションウィンドウにドラッグしてプロジェクトに追加する必要があります)として設定し、ラベルにテキストを書き込むことができます。


2

この方法を試してください...

  self.lbl.text=@"Drawble Left";
    UIImageView *img=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 20, 20)];
    img.image=[UIImage imageNamed:@"Star.png"];
    [self.lbl addSubview:img];

これは役に立ちましたか?
user1673099 2013年

このアプローチは、画像のテキストオフセットを見逃します(テキストは画像の後ろにあります)
brigadir 2014年

2

Swift 5簡単な方法コピーして貼り付け、必要なものを変更する

let fullString = NSMutableAttributedString(string:"To start messaging contacts who have Talklo, tap ")

 // create our NSTextAttachment
let image1Attachment = NSTextAttachment() 
image1Attachment.image = UIImage(named: "chatEmoji")
image1Attachment.bounds = CGRect(x: 0, y: -8, width: 25, height: 25)

// wrap the attachment in its own attributed string so we can append it
let image1String = NSAttributedString(attachment: image1Attachment)

 // add the NSTextAttachment wrapper to our full string, then add some more text.

 fullString.append(image1String)
 fullString.append(NSAttributedString(string:" at the right bottom of your screen"))

 // draw the result in a label
 self.lblsearching.attributedText = fullString

ここに画像の説明を入力してください



1

Swift 2.0では、

この問題に対する私の解決策は、この質問に対するいくつかの回答の組み合わせです。@Philの回答で直面した問題は、アイコンの位置を変更できず、常に右隅に表示されることでした。そして、@ anatoliy_vからの1つの答えとして、文字列に追加するアイコンのサイズを変更できませんでした。

それを私のために機能させるために、私は最初にaを実行しpod 'SMIconLabel'、次にこの関数を作成しました:

func drawTextWithIcon(labelName: SMIconLabel, imageName: String, labelText: String!,  width: Int, height: Int) {

        let newSize = CGSize(width: width, height: height)
        let image = UIImage(named: imageName)
        UIGraphicsBeginImageContextWithOptions(newSize, false, 0.0)
        image?.drawInRect(CGRectMake(0, 0, newSize.width, newSize.height))
        let imageResized = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()

        labelName.text = " \(labelText)"
        labelName.icon = imageResized
        labelName.iconPosition = .Left
    }

このソリューションは、画像の配置に役立つだけでなく、アイコンのサイズやその他の属性に必要な変更を加えることもできます。

ありがとうございました。


1

Swift 3 UILabel拡張

ヒント:画像とテキストの間にスペースが必要な場合は、labelTextの前に1つまたは2つのスペースを使用してください。

extension UILabel {
    func addIconToLabel(imageName: String, labelText: String, bounds_x: Double, bounds_y: Double, boundsWidth: Double, boundsHeight: Double) {
        let attachment = NSTextAttachment()
        attachment.image = UIImage(named: imageName)
        attachment.bounds = CGRect(x: bounds_x, y: bounds_y, width: boundsWidth, height: boundsHeight)
        let attachmentStr = NSAttributedString(attachment: attachment)
        let string = NSMutableAttributedString(string: "")
        string.append(attachmentStr)
        let string2 = NSMutableAttributedString(string: labelText)
        string.append(string2)
        self.attributedText = string
    }
}

1
私はこれを使用し、それは完全に機能しました。上記の他のものは、実際に画像を文字列の最後まで反転させました。
mondousage 2018年

1
 func atributedLabel(str: String, img: UIImage)->NSMutableAttributedString
{   let iconsSize = CGRect(x: 0, y: -2, width: 16, height: 16)
    let attributedString = NSMutableAttributedString()
    let attachment = NSTextAttachment()
    attachment.image = img
    attachment.bounds = iconsSize
    attributedString.append(NSAttributedString(attachment: attachment))
    attributedString.append(NSAttributedString(string: str))

    return attributedString
} 

この機能を使用して、ラベルに画像や小さなアイコンを追加できます


viewdidload()でこれを呼び出します
Ayush Dixit

let emojisCollection = [UIImage(named: "ic_place")、UIImage(named: "ic_group")、UIImage(named: "ic_analytics")] lbl1.attributedText = atributedLabel(str: "Howath、Dublin"、img:emojisCollection [0 ]!)lbl2.attributedText = atributedLabel(str: "Difficulty:18+"、img:emojisCollection [2]!)lbl3.attributedText = atributedLabel(str: "最大グループサイズ:10"、img:emojisCollection [1]!)
Ayush Dixit

元の回答を編集して、上記のコメントを含めることができます。
Moondra

0

あなたが使用されるカスタムオブジェクトを作成する必要がありUIView、あなたの内側に置くUIImageViewと、UILabel

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.