tags:

views:

44

answers:

4

Hello all,M a new comer to iPhone world ,i want to use NSComboBox(DropDown list somewhere) in my application. but not having any idea....m totally blank about NSCombobox...could any one guide me..Thank you.....

+1  A: 

NSComboBox does not exist on the iPhone. It's part of the AppKit framework, which means it only exists on the Mac. The iPhone's GUI framework is called UIKit.

Dave DeLong
...and `UIPickerView` is the semantic equivalent: http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIPickerView_Class/Reference/UIPickerView.html
quixoto
Thank you for your quick response..But I have allready seen somewhere in Application,I jst wanna to say,iPhone supports NSCombobox....but question arises HOW?
talktobijju
+3  A: 

The iOS Cocoa Touch framework doesn't include anything like an NSComboBox. You might want to look into using the combination of a UITextField plus a "pop-up" UIPickerView for list selection.

hotpaw2
Thank you for your quick response..But I have allready seen somewhere in Application,I jst wanna to say,iPhone supports NSCombobox....but question arises HOW?
talktobijju
A: 

You could always write your own.

Jasarien
A: 

Maybe you open wrong project style. Because NSComboBox is under Mac Application. You should use project for iPhone application.

Toro