UITextView格线用文本调整

时间:2011-10-17 05:35:28

标签: iphone objective-c uitextview

要获得带有UI textview的划线背景,我找到了来自here

的代码

我使用了相同的代码,但根据我的需要,我在代码中添加了一个边距数字,图中显示如下enter image description here

现在我希望文本位于边距线旁边,并且在每个段落的第一行中我想要显示从边距到第一个单词的一些空格。怎么做请指导我

1 个答案:

答案 0 :(得分:0)

当填充视图作为子视图添加时,它对我来说是一个很好的余地。

UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];    
textView.backgroundColor = [UIColor redColor]; 
textView.text = @"SomeText"; 

UIView *paddingView = [[[UIView alloc]   
initWithFrame:CGRectMake(0, 0, 50, 200)] autorelease]; 
paddingView.backgroundColor = [UIColor whiteColor]; 

[textView addSubview:paddingView];   
[self.view addSubview:textView];