gpt4 book ai didi

ios - UITextView contentInset 不工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:46:25 29 4
gpt4 key购买 nike

我在 UITextView 中显示文本。我需要对文本应用一些填充。当我将值(value)用于最高职位时,它正在工作。如果我将值用于其他位置,则它不起作用。

 txtt_bgImage     = [UIImage imageNamed:@"txtt_bg_ipad.png"];
txtt_bgImageView = [[UIImageView alloc] initWithImage:txtt_bgImage];

txtt=[[UITextView alloc]initWithFrame:CGRectMake(170, 300, 400, 250)];

txtt.text=productDescription;



[txtt setFont: [UIFont fontWithName:@"verdana" size:15]];

txtt.textColor=[UIColor whiteColor];

[txtt setBackgroundColor:[UIColor clearColor]];


txtt.contentInset = UIEdgeInsetsMake(15,0,0,0);

// [txtt setTextContainerInset:UIEdgeInsetsMake(7, 7, 0, 0)];

txtt_bgImageView.frame=CGRectMake(170, 300, 400, 250);


[self.view addSubview:txtt_bgImageView];

txtt.editable=NO;

NSLog(@"text is %@",txtt.text);

object.object_screentext = txtt;

[self.view addSubview:txtt];

最佳答案

对于 iOS7 使用 textContainerInset

@property(nonatomic, assign) UIEdgeInsets textContainerInset NS_AVAILABLE_IOS(7_0);

对于 Bellow iOS7,使用 contentInset 并将 UIEdgeInsetsMake 设置为以下语法。

UIKIT_STATIC_INLINE UIEdgeInsets UIEdgeInsetsMake(CGFloat top, CGFloat left, CGFloat bottom, CGFloat right) {
UIEdgeInsets insets = {top, left, bottom, right};
return insets;
}

根据您的代码,您只设置顶部插图但是如果您希望设置所有侧面,则必须像下面这样设置内容插图:-

if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) {
_TxtViewSummary.contentInset = UIEdgeInsetsMake(10, 0, 10, 0);
} else {
_TxtViewSummary.textContainerInset = UIEdgeInsetsMake(10, 10, 10, 10);
}

看起来像这样:-

enter image description here

关于ios - UITextView contentInset 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22935277/

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