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.
iOS用のUIActivityIndicatorViewのようなMacOSX用の「NSActivityIndicatorView」はありませんか?
長時間の活動中に回転する「歯車」を表示するにはどうすればよいですか?
NSProgressIndicator を使用できます。
ここでは、その初期化を行います。
NSProgressIndicator* indicator = [[[NSProgressIndicator alloc] initWithFrame:NSMakeRect(20, 20, 30, 30)] autorelease]; [indicator setStyle:NSProgressIndicatorSpinningStyle];