问题
I am creating custom keyboard for ios 8. Creating keyboard buttons like this
UIButton *aBtn = [ UIButton buttonWithType:UIButtonTypeCustom ];
[aBtn setFrame:CGRectMake(x, 30, btnWidth, btnHeight)];
[aBtn setImage:[UIImage imageNamed:@"A"] forState:UIControlStateNormal];
[aBtn setTitle:@"A" forState:UIControlStateNormal];
[aBtn setTitleColor:[ UIColor blackColor] forState:UIControlStateNormal];
[aBtn setTitleColor:[ UIColor whiteColor] forState:UIControlStateHighlighted];
[aBtn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:aBtn];
My problem is that the image is not set to button. How can I solve this?
Do I need any special steps to be able to add images to Xcode for custom keyboards?
回答1:
You probably didn't add the image to your keyboard target.
Check your keyboard target > Build Phases > Copy bundle resources to make sure that the image is there. Drag it there if it isn't.
Note that I am talking about the keyboard target, not the host app. That could be the confusion here.
回答2:
You can add image on custom keyboard like below steps.
1. Add images in your xcode project
2. Add images in keyboard bundle resources. check below image

3. Set image with background on button. check below image

来源:https://stackoverflow.com/questions/25957184/how-can-i-add-button-icons-to-custom-keyboard-ios-8