- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 https://github.com/nicklockwood/CountryPicker 添加 UiPickerView 类我想在我的 viewController 中使用 Storyboard ,但是尽管 pickerView 显示了国家/地区,但永远不会调用委托(delegate)方法。这是我所做的:我导入了 CountryPicker 文件夹和 Flags 文件夹,在 Storyboard Controller 中我添加了一个 UiPickerView 并将其分配给 CountryPicker 类。ViewController.h 和 .m 文件与示例完全相同。我找不到我缺少的东西。我还尝试初始化对象并从我的 ViewController.m 文件中调用 setSelectedCountry 方法,但它也没有做任何事情。 View Controller .h
#import <UIKit/UIKit.h>
#import "CountryPicker.h"
@interface ViewController : UIViewController <CountryPickerDelegate>
@end
ViewController.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
CountryPicker *picker = [[CountryPicker alloc] init];
[picker.delegate self];
[picker setSelectedCountryCode:@"US" animated:YES];
}
- (void)countryPicker:(__unused CountryPicker *)picker didSelectCountryWithName:(NSString *)name code:(NSString *)code
{
NSLog(@"country: %@",name);
}
@end
最佳答案
您需要从 Storyboard创建一个 IBOutlet 到您的代码 Apple Docs
删除您在 viewDidLoad
中创建新选择器的代码。
然后,对于您创建的新 IBOutlet,将 self
设置为委托(delegate),因此如果您的 socket 被称为 picker
您的 viewDidLoad
应如下所示:
- (void)viewDidLoad
{
[super viewDidLoad];
self.picker.delegate = self;
[self.picker setSelectedCountryCode:@"US" animated:YES];
}
关于ios UiPickerView 与 CountryPicker 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22268187/
所以我在一个 ViewController 中使用 2 个 UIPickerView 控件时遇到了这个问题。我正在使用此处找到的 CountryPicker https://github.com/ni
我正在尝试从 https://github.com/nicklockwood/CountryPicker 添加 UiPickerView 类我想在我的 viewController 中使用 Story
我已经从github成功实现了AndroidCountryPicker开源项目。这个:https://github.com/roomorama/AndroidCountryPicker .现在我想把美
我是一名优秀的程序员,十分优秀!