ios结合了图像视图和UIlabel

时间:2014-07-16 17:52:29

标签: ios uiimageview textview uilabel

在android中,TextView具有将附带图像添加到文本的功能。基本上,我可以使用TextView在文本旁边添加图像,而不是并置ImageView和TextView。在iOS中存在类似的东西吗?

1 个答案:

答案 0 :(得分:0)

尝试使用像这样的自定义UIView

@interface ImageAndTextView : UIView
@property (strong, nonatomic) IBOutlet UIImageView *imageView;
@property (strong, nonatomic) IBOutlet UITextView *textView;
@end

您可以在storybaord中拖放UIView并将类设置为此类并连接插座。

您还可以在故事板或.m文件中设置其位置等。

H个