Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 iphone dev 中使用 EGOTextView,我想在创建 EGOTextView 后通过代码更改高度,我尝试了 setFrame 或 frame = newframe,两者都不起作用,您能否提供一些建议。
最好的,
松香
如果你想改变整个框架的EGOTextView(位置和大小),那么使用:
EGOTextView
EGOTextView.frame = CGRectMake(new x, new y, new width, new height);
如果您只想更改大小,请使用:
EGOTextView.size = CGSizeMake(new width, new height);
上面的每个“新”对象都应该是一个数字(例如CGSizeMake(320, 480))。
CGSizeMake(320, 480)