gpt4 book ai didi

ios - 在 UITextView 内占据左角的 UIImageView

转载 作者:行者123 更新时间:2023-11-28 18:05:12 28 4
gpt4 key购买 nike

如何为左上角带有 UIImageView 的 UITextView 编写 Xcode objective-C 代码,字符串从 UIImageView 旁边开始。

所以UITextView的文字不会填满矩形区域。我想制作一个包含 UIImageView 的 UITextView 的子类。但是,我坚持不应该跨越 UIImageView 区域的文本定位。

提前致谢。

最佳答案

UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(100, 150, 100, 60)];
[textView setTextContainerInset:UIEdgeInsetsMake(0, 30, 0, 0)];//30**
UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 30, 60)];//30**
[imageView setImage:[UIImage imageNamed:@"imageName"]];
[textView addSubview:imageView];
[self.view addSubview:textView];

30** = imageWidth = 左侧的 edgeInset

关于ios - 在 UITextView 内占据左角的 UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31784204/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com