程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> xcode-如何設置ios中的UIPickerView?

xcode-如何設置ios中的UIPickerView?

編輯:編程綜合問答
如何設置ios中的UIPickerView?

目前需要添加一個PickerView,但是運行之後只有黑屏,不知道問題出在哪裡?

UIPickerView *myPickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 320, 320)];

    [self.view addSubview:myPickerView];

謝謝指點。

最佳回答:


用UIPickerViewDataSource方法:

– numberOfComponentsInPickerView:
– pickerView:numberOfRowsInComponent:

還有UIPickerViewDelegate方法:

– pickerView:titleForRow:forComponent:

然後設置properties:

UIPickerView * myPickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 320, 320)];
myPickerView.delegate = self;
myPickerView.dataSource = self;
[self.view addSubview:myPickerView];

在.h文件中,如下:

<UIPickerViewDelegate, UIPickerViewDataSource>

我以前是用NSMutableArray充填字符串,希望對你有用。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved