Tagged Questions
46
votes
5answers
8k views
No plus or minus button in Xcode localization settings
I need to translate an iOS-Application within two days, but my XCode versions (4.4 and 4.5 Developer Preview) both don't give me the option to add another language. I only get the option to click ...
12
votes
6answers
15k views
IOS: one IBAction for multiple buttons
In my project I must control action of 40 buttons, but I don't want to create 40 IBAction, can I use only a IBAction, how?
8
votes
3answers
35k views
Set a button background image iPhone programmatically
In Xcode, how do you set the background of a button as an image? Or, how can you set a background gradient in the button?
TIA,
Linda
8
votes
1answer
207 views
Connecting ZXing to a button in xcode
I am new to programming, so this question I'm sure is extremely basic (bear with me!)
I just installed zxing into my current xcode 4.5 project. It took me a while to get through the errors, but I ...
5
votes
5answers
7k views
iPhone button with non-rectangle shape?
How can I get a non-rectangular shaped button?
For example I do have a PNG image with alpha transparency.
How can I set the shape of a button to this image without the transparent color.
5
votes
1answer
1k views
Run/Stop buttons hidden in XCode 4
I cannot get to the run and stop buttons outside of full screen mode in Xcode 4. Does anyone know how to get out of this view?
It is absurd that this is wasting my time. I should have never upgraded. ...
5
votes
1answer
4k views
Unicode in button title in XCode
I'm trying to display the greek letter pi (unicode \u03C0) on a button as the title.
When I try to set the title using drag'n'drop graphical editor, the word "\u03C0" shows.
Is there some way to set ...
5
votes
3answers
4k views
Create custom buttons for Interface Builder
Hey guys,
Does anyone know how to create custom buttons for Interface Builder? Like instead of have just a regular Round Rect Button, I want to have like a custom 3D button and some random image ...
4
votes
2answers
4k views
Multiple UIAlertView; each with their own buttons and actions
Im creating a view in Xcode 4.3 and im unsure how to specify multiple UIAlertView's that have their own buttons with separate actions. Currently, my alerts have their own buttons, but the same ...
4
votes
2answers
1k views
Button doesn't work after XCode update to version 4.5
I have updated my Xcode and suddenly all Buttons, which are connected in the storyboard to the selectors, doesn't work anymore. All programmatically coded Buttons and gesture recognizers work. ...
4
votes
2answers
784 views
Audio Session Property Listener auto-deactivated in UIImagePickerController?
I'm developing a camera app to snap photo when the volume button is pressed.
I used AudioSessionAddPropertyListener(kAudioSessionProperty_CurrentHardwareOutputVolume, ...
3
votes
2answers
12k views
how to create a tabbar programmatically and adding buttons on it
i want to add buttons on to my tab bar programmatically in my view...
i am having navigation controller but it does not allow me to add these ..
i want to create programmatically in my view...
3
votes
3answers
11k views
Alert message for the button click in iphone sdk 4.3
I am beginner to xcode programming.Please tell me how to display the alert message when we are going to click the button in xcode-iphone-4.3
My Code is as follows,
- ...
3
votes
2answers
411 views
Button text not showing and xcode crashing
I am just starting out learning IOS development. I've spent days trying to troubleshoot this problem and I'm getting nowhere. Hopefully someone can help.
I was working on a calculator app for the ...
3
votes
3answers
327 views
Activity Indicator above Button prevents Click Recognition
I have an UIButton "bn" and an UIActivityIndicator "ai" which is above the button (ai.center = bn.center).
As long as ai is visible and animating, I can't press the Button underneath ai's frame but ...