EGOTextView问题

时间:2012-04-27 08:35:36

标签: iphone ios ios4

EGOTextView *view = [[EGOTextView alloc]initWithFrame:
      CGRectMake(5.0f,5.0f,310.0f,220.0f)];
      view.delegate = (id<EGOTextViewDelegate>)self;
      view.layer.borderWidth = 1.0f;
      view.layer.cornerRadius = 15;
      //view.clipsToBounds = YES;
      view.backgroundColor = [UIColor whiteColor];
      view.returnKeyType = UIReturnKeyDone;  
      //view.contentInset = UIEdgeInsetsZero;
      [self.view addSubview:view];
      self.egoTextView = view;
      self.egoTextView.font = [UIFont fontWithName:@"Helvetica" size:25.0f];
      self.egoTextView.attributedString = string;
      [view release];  
      [view becomeFirstResponder];

上面的代码创建了textview,但是前两行被隐藏起来并且不可见。我需要向下滚动才能查看它。

此外,文本集最初不会采用提到的字体大小。只有当我输入文字时,我提到的字体大小才会受到影响。

那么我该如何解决这个问题呢。 非常感谢您的帮助

0 个答案:

没有答案