我需要以編程方式製作一個Cocoa單選按鈕,任何人都可以解釋這可能是如何完成的,或發佈一個很好的鏈接來展示如何做到這一點。以編程方式創建一個Cocoa單選按鈕
1
A
回答
9
下面是一個示例代碼編程創建單選按鈕:
//create the radio button prototype
NSButtonCell *proto = [[NSButtonCell alloc] init];
[proto setTitle:@"Options"];
[proto setButtonType: NSRadioButton];
//define the matrix size where you'll put the radio buttons
NSRect matrixRect = NSMakeRect(20.0,20.0,125.0,125.0);
//define the matrix specifying that it will contain radio buttons of
//prototype "proto" defined above, and that it will have 3 radio buttons
//arranged on 1 column
NSMatrix *matrix = [[NSMatrix alloc] initWithRect: matrixRect
mode: NSRadioModeMatrix
prototype: (NSCell *)proto
numberOfRows:3 numberOfColumns:1];
//this assumes that you connected the window object to an outlet
[[windowOutlet contentView] addSubview: matrix];
//set the radio buttons' titles by getting references to the matrix's cells
NSArray *cells = [matrix cells];
[[cells objectAtIndex:0] setTitle:@"Option 1"];
[[cells objectAtIndex:1] setTitle:@"Option 2"];
[[cells objectAtIndex:2] setTitle:@"Option 3"];
[proto release];
[matrix release];
玩得開心!是的,這是取自here,但我添加了一些個人意見來解釋過程。
4
2
The NSButton Class reference is here
按鈕編程的話題,特別是單選按鈕(樣本代碼) can be found here
相關問題
- 1. 以編程方式創建單選按鈕
- 2. 以編程方式選擇一個MFC單選按鈕
- 3. 以編程方式創建一個asp:按鈕?
- 4. 以編程方式創建一個按鈕模板
- 5. 使用Cocoa以編程方式創建複選框
- 6. 如何以編程方式在Cocoa中爲按鈕創建動作?
- 7. 如何以編程方式創建圖像按鈕菜單?
- 8. 以編程方式創建一個在Access中打開表單的按鈕
- 9. 以編程方式創建多個按鈕:Android
- 10. 更改以編程方式創建的單選按鈕的背景顏色
- 11. 以編程方式創建一個LayeredDrawable
- 12. 以編程方式創建一個SKTileDefinition
- 13. 以編程方式單擊MessageBox按鈕
- 14. 以infopath形式創建一個單選按鈕「只讀」?
- 15. 以編程方式創建按鈕的onClick方法
- 16. 使用樣式以編程方式創建按鈕
- 17. 如何以編程方式創建任何形式的按鈕?
- 18. 以編程方式取消選中單選按鈕的標籤
- 19. 以編程方式在android中單擊單選按鈕?
- 20. Android以編程方式創建一個簡單的菜單
- 21. 以編程方式創建選項卡
- 22. 用Cocoa/Objective編程方式創建一個選項卡視圖C
- 23. 以編程方式創建菜單DevExpress
- 24. 以編程方式創建win表單?
- 25. 以編程方式創建訂單
- 26. 創建一個按鈕並以編程方式將其添加到視圖中
- 27. Swift 3使用UINavBar按鈕顯示一個以編程方式創建的datePicker
- 28. 創建一個按鈕編程的onCreate
- 29. 訪問以編程方式創建的UI按鈕:objective-c
- 30. 以編程方式創建沒有各自佈局的按鈕
非常好,謝謝。爲什麼Matrix編程指南中沒有這個代碼? – rocky 2013-11-20 20:55:02