希望这很容易,但我有点难过
我有一个条形按钮,我想设置为信息符号
符号位于iOS human interface guidlines但不在界面构建器属性检查器的下拉列表中。
我如何获得此图片?
欢呼声
答案 0 :(得分:2)
这是一个自定义类型按钮。
UIButton* myInfoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[myInfoButton addTarget:self action:@selector(InfoButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:myInfoButton];
或
您可以尝试this also
答案 1 :(得分:2)