私はUIPickerViewに関して助けが必要です。私のアプリケーションでは、利用可能な国でUIPickerViewを表示する必要があります。どの団体でも既に国の選択を実装している場合は、コードを共有してください。利用可能な国のUIPickerView
おかげ
私はUIPickerViewに関して助けが必要です。私のアプリケーションでは、利用可能な国でUIPickerViewを表示する必要があります。どの団体でも既に国の選択を実装している場合は、コードを共有してください。利用可能な国のUIPickerView
おかげ
利用できる国の配列を作成し、これらのdelgate方法でこの配列を使用して、データ・ソース・メソッド
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
- 配列
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
の指標で>戻り値配列内の要素数
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
return 1;
あなたはここに国が、私はこの目的のために作成したことのplistだように、次からcountries.plistを取り、
http://code.google.com/p/reviewscraper/source/browse/trunk/Countries.plist?spec=svn22&r=22
ウルピッカー入力のためにそれを使用することができます。
https://gist.github.com/vilcsak/c205dfd153a3e465f47e
を実装はかなり単純ですが、ここではコードの一部です:
- (id)init {
if ((self = [super init])) {
self.countries = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Countries" ofType:@"plist"]];
}
return self;
}
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
self.currentCountry = [[self.countries objectAtIndex:row] objectForKey:@"code"];
self.countryLabel.text = [[self.countries objectAtIndex:row] objectForKey:@"name"];
}
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
return self.countries.count;
}
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {
return [[self.countries objectAtIndex:row] objectForKey:@"name"];
}
あなたのコードAndrewをplistにお寄せいただきありがとうございます! – brasskazoo
あなたはこのような利用可能な国の名前のリストを取得することができます。
self.countryArray = [NSMutableArray new];
for (NSString *countryCode in [NSLocale ISOCountryCodes]) {
NSString *country = [[NSLocale systemLocale] displayNameForKey:NSLocaleCountryCode value:countryCode];
[self.countryArray addObject: country];
}
、ここではいくつかのUIPickerデリゲートメソッドです:
ここで国リストデータピッカーについてのブログ記事へのリンクがありますポップオーバー。 http://iosblogl.blogspot.in/2015/11/pickerview-popover-with-country-list.html
[リンクのみの回答](http://meta.stackoverflow.com/tags/link-only-answers/info)はお勧めできませんので、SOの回答は解決策の検索の終点でなければなりません。時間の経過とともに古くなる傾向がある参照の途中降機)。リンクを参考にして、ここにスタンドアロンの概要を追加することを検討してください。 – kleopatra
コードを共有してください??? – alecnash