我正在尝试实现一个任务,其中用户将像iNotes.app一样创建注释,为此我必须从左边给出一些填充,在我的情况下,填充比实际的iNotes(app)稍微多一点而这个问题是,如果我完成整行,它就会离开视图/屏幕而用户无法看到。
为了解决这个问题,我首先使用了
UIEdgeInsetsMake(0,40,0,-40);
//this thing makes the content non-scrollable horizontaly
//but the text still goes out of screen
然后我用了
UIEdgeInsetsMake(0,40,0,0);
//By doing this the content becomes horizontally
//scrollable and the content appear as per scrolling.
我不希望我的textview水平滚动,我希望它能在不剪切任何内容的情况下显示内容。
请指导我应该怎样做才能解决这个问题 如果我的方法有误,请以其他方式提出建议。在此先感谢:)