gpt4 book ai didi

iphone - ios uitextfield 像笔记

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:34:35 24 4
gpt4 key购买 nike

我希望我的 uitextfield 看起来像 iPhone 的笔记,黄色的线条..最好的方法是什么?提前致谢!

最佳答案

你是说 UItextview 吧? ...它不是 UITextField。但是,清除 UITextView 上的背景。

self.textView.backgroundColor =  [UIColor clearColor];

然后创建 ImageView 并将其作为 subview 放置到 TextView 中。

backgroundimage = [[UIImageView alloc] initWithFrame: CGRectMake(0, -14,textView.frame.size.width, textView.fram.size.height)];

设置一个图案图像作为backgroundColor。这将是你的台词。只需创建一两行。然后它应该重复自己。

backgroundimage.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"lines.png"];

然后将您的 subview 添加到 TextView 。

[self.textView addSubview:backgroundimage];

祝你好运!

关于iphone - ios uitextfield 像笔记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5098682/

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