1
我正在開發OS X應用程序並希望添加NSTextView。我無法在NSTextField上找到contentInset屬性。如何爲NSTextView設置contentInset。以下是iOS代碼,相同的OS X是什麼?NSTextView上的contentInset屬性等效於什麼?
UITextView* textView = [[UITextView alloc] initWithFrame:CGRectZero];
textView.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);
你說'NSTextView'在你的問題兩次,'NSTextField'一次,在一個標籤。這是什麼? – JWWalker