在android中,TextView具有将附带图像添加到文本的功能。基本上,我可以使用TextView在文本旁边添加图像,而不是并置ImageView和TextView。在iOS中存在类似的东西吗?
答案 0 :(得分:0)
尝试使用像这样的自定义UIView
@interface ImageAndTextView : UIView
@property (strong, nonatomic) IBOutlet UIImageView *imageView;
@property (strong, nonatomic) IBOutlet UITextView *textView;
@end
您可以在storybaord中拖放UIView并将类设置为此类并连接插座。
您还可以在故事板或.m文件中设置其位置等。
H个