Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
6k views

Gesture recognizer and button actions

I have a view hierarchy that looks something like this: UIView (A) UIView > UIImageView UIView > UIView (B) UIView > UIView (B) > Rounded Rect Button UIView > UIView (B) > ...
5
votes
2answers
126 views

Programming a Universal App in iOS

When I am programming a universal app, lets say I have an IBAction like so: (IBAction)magicCode:(id)sender { textField1.text = "TEST"; } Do I need to create a new IBAction for each view (iPad ...
5
votes
3answers
295 views

Naming conventions on IBAction functions

I am doing another iOS application and I wonder if there are any naming conventions or good practices on how to name actions that I could follow. I am thinking of names on the functions that are ...
5
votes
5answers
4k views

Objective C: what is a “(id) sender”?

In some IBAction I saw: - (IBAction)pushButton:(id)sender; This (id)sender when do I use it?
3
votes
1answer
86 views

Disable a button based on a label's value

I have a UILabel called label, and you can add or subtract 1 from it using two buttons. When you subtract all the way down to 0, I want the minus button to stop working. And if the value is added, I ...
3
votes
3answers
372 views

What is the (id)sender for in -(IBAction)action:(id)sender;

What is the (id)sender for in: -(IBAction)action:(id)sender; Thanks for your help!
3
votes
3answers
341 views

Multiple UIButtons 1 function

Basically I need to have several buttons in a view. I would like them to all call one function so that I can keep track of a 'state'. How can I tell which button called the function? Is there anyway ...
3
votes
4answers
4k views

UIButton event 'Touch Up Inside' not working. 'Touch Down' works fine

I've got a UIButton in a UIView, which is in a UIViewController that I've allocated and inited from a .xib file. When hooking an IBAction up to the 'Touch Down' event of a UIButton it triggers ...
3
votes
3answers
805 views

Using Interface Builder efficiently

I am new to iPhone and objective c. I have spent hours and hours and hours reading documents and trying to understand how things work. I have RTFM or at least am in the process. My main problem is ...
3
votes
1answer
519 views

IBAction methods declared in a Protocol are not visible in Interface Builder

I have defined an objective-c protocol that declares a method that is tagged with IBAction. I implemented a UIViewController that implements the protocol. In Interface Builder I created a nib file ...
2
votes
3answers
41 views

iOS: Include sender in IBAction declaration?

I have a best practices/stylistic question. Let's say I have an IBAction method and I have no need for the sender parameter (I'm aware how to use the sender parameter if I do need it). Do folks ...
2
votes
1answer
50 views

NSButton Multiple clicks

I have an IBAction of when the button is clicked to change my view. How can I handle multiple clicks for example if I click the button a second time to cause another action? Or do I need to delete ...
2
votes
2answers
433 views

Buttons not working in IOS5

i built an app on ios 4.3 and it worked fine but when i run it on the new ios the back buttons dont work. Heres my code to go to the next xib: -(IBAction)Selection3Page:(id)sender;{ //show next ...
2
votes
1answer
73 views

Using IBActions with UIButtons without IBOutlet

Sorry for the unclear title. I want to be able to add IBAction methods to a button I added in the following way: (.h class) { UIButton *button; } -(IBAction)ButtonReleased:(id)sender (.m ...
2
votes
2answers
219 views

Can I have multiple UIAlertViews for one IBAction in Xcode?

Is it possible to program multiple UIAlertViews for one IBAction in Xcode to show at random. For example: I am making an app with multiple questions shown at random, when the submit button is ...
2
votes
4answers
3k 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?
2
votes
3answers
917 views

How to define which button pressed if they both have same IBAction?

I have two UIButtons (I create them using IB), which connected to File's owner with the same IBAction, how can i define which of them are pressed?
2
votes
0answers
938 views

Correct way to setup target/action for NSMenuItem in Cocoa?

I'm having some real difficulty with some initial Cocoa programming I am carrying out. Essentially, I have an NSStatusBar item with an NSMenu attached as the menu. The menu has a single NMMenuItem. ...
2
votes
1answer
2k views

Custom UITableViewCell and IBAction

I have a custom UITableViewCell on which I have added a button, I have associated that button on an IBAction in my viewController. Now the problem that i am facing is how do I know from which cell ...
2
votes
1answer
701 views

UIButton event 'Touch Up Inside' not working. 'Touch Down' works fine

I've got a UIButton in a UIView, which is in a UIViewController that I've allocated and inited from a .xib file. When hooking an IBAction up to the 'Touch Down' event of a UIButton it triggers ...
2
votes
3answers
552 views

Using an IBAction method when it is not called from an action?

Are there any issues when using IBAction when it is not actually called from a user's action? If you have an action like -(IBAction)sayHello:(id)sender; You can call it from within your class ...
2
votes
1answer
845 views

iPhone: “Unrecognized Selector Sent to Instance” Error

I’m trying to implement a partial overlay modal in my app with the code from “Semi-Modal (Transparent) Dialogs on the iPhone” at ramin.firoozye.com. The overlay functionality works and it slides the ...
1
vote
5answers
49 views

User Interface commands skipped in IBAction

Here is my code: -(IBAction)saveDownloadedImage { NSLog(@"Test"); EXECUTED indicatorView.hidden = NO; NOT EXECUTED [indicatorView startAnimating]; NOT EXECUTED [statusLabel ...
1
vote
0answers
23 views

How do I get NSDragOperation to IBAction

I have a NSDragOperation that currently resides in a different implementation as AppDelegate; it grabs the file name of a dragged file and populates a text field on AppDelegate. From that text field ...
1
vote
1answer
38 views

iOS: is there a way of pressing a button such that it also presses another button?

I have a "Submit" button and a button that toggles between "Edit" and "Cancel." How do I get the "Cancel" button to return to saying "Edit" when I press the "Submit" button? If I press "Cancel," that ...
1
vote
2answers
350 views

How to use Gesture Recognizers in IB (iPhone/iPad)?

I have just discovered the Gesture Recognizers in IB and I would like to make use of them. I've tried out the Tap Gesture Recognizer however it doesn't seem to work. Here is what I've done... ...
1
vote
0answers
19 views

IBAction method now shown in File's Owner

I have a header file that declares two classes. The second looks like #import <MessageUI/MessageUI.h> #import <MessageUI/MFMailComposeViewController.h> @interface ...
1
vote
1answer
782 views

UiButton / IBAction - link from a RootView to mainView in Storyboard

I try to call the main ViewController on my storyboard. In my app there is a additional .h,.m file with no xib or storyboard. In this .m file T craeted a button: UIButton *button = [UIButton ...
1
vote
0answers
254 views

Button getting EXC_BAD_ACCESS?

im trying to create a simple app that allows you to switch views. I can go to the next view but when i click the back button i get a EXC_BAD_ACCESS error on this line in the main.m: return ...
1
vote
3answers
179 views

Cannot connect UIButton to ViewController in XCode4

I'm learning iPhone Dev and I'm stuck on something. I'm writing a simple calculator program, but when I try to connect one of the buttons on the calculator to the File Owner in Interface Builder I do ...
1
vote
0answers
115 views

Clicking on UIButton not working when in the presence of a single Tap UIGestureRecognizer

I have a view based Window, on the view I added single tap UIGestureRecognizer. I then added a new popover type view, which let's name "Popover view", on this view with a `UIButton' on it. So now ...
1
vote
0answers
27 views

is IBAction mandatory to reflect a method on Interface Builder?

What is the difference between below two methods, both are meant for mapping through Interface builder - (void) showNYTimes:(id)sender and - (IBAction) showNYTimes:(id)sender Both are ...
1
vote
3answers
171 views

How to tell programmatically if a IBAction has been called by code or by user action

How can I tell programmatically if a IBAction has been called by code or by user action. Eg I have a method, -(IBAction)someMethodWithIts:(id)sender which I have linked to a valueChanged on a ...
1
vote
2answers
529 views

UIButton actions set in XIB but not firing

Problem description is brief but I think I don't need to say much. When I load my custom movie player's .xib, the UIButton/UIBarButtonItem controls are set to ivars/properties of my File's Owner ...
1
vote
2answers
401 views

iOS: Implementing UITabBar from User Interface without a UITabBarController

In my app I have a UIViewController to which I wish to add a UITabBar. So I have added it via User Interface (into the UIViewController.xib file) and created instances of the IUTabBar and the ...
1
vote
1answer
98 views

Toggling MapKit Overlays On/Off by pressing the same button?

I have a MapView with a toolbar button that when pushed adds overlays to the MapView. What I would like is for the button (IBAction) to check to see if there already are overlays on the map and if ...
1
vote
2answers
175 views

How to use an IBAction button outside it's scope

I have three IBActions, each linked with it's own button like so: #import "Controller.h" #import "Application.h" @implementation Controller - (IBAction)deal:(id)sender { NSButton *deal = ...
1
vote
1answer
75 views

ios how to add event in entity in Core Data?

I have an entity 'USer' and one attribute 'name'. I am trying to add one name to the entity 'User' using this code which is used in FirstViewController.m file: - (IBAction)addUser:(id)sender { ...
1
vote
2answers
111 views

Is there any benefit of having (id)sender in IBAction

When coding with cocoa I've noticed that it's not necessary to have sender parameter when defining IBAction, hence following action: - (IBAction)showUserInfo:(id)sender; can be declared as - ...
1
vote
2answers
462 views

Call IBAction in different class

My document based application has a window with a tableview. The tableview has a datasource which points to a class of type NSObject (called HopBill) which includes a NSMutableArray (aHopBill) and the ...
1
vote
3answers
326 views

How can I call objective-c code from within an html file in a UIWebView?

So I know this type of thing is easily achieved in Java using JSP files, but I am wondering how I can mix code and html inside an iOS view. The reason I need to do that is that I have (local) html ...
1
vote
1answer
157 views

Delegate and IBAction

They seem to accomplish the same thing in Objective C. What can one do without the other?
1
vote
2answers
296 views

Multiple Objective-C objects for iPhone app?

I'm sure this is going to sound very weird, but I'll ask anyway. I have made multiple working applications for the iPhone, but I have to add everything to the original view controller. If I don't do ...
1
vote
2answers
444 views

Objective C: open and close a subview

This is my code with two IBAction for open and close a subview in two different classes - (IBAction) showListClient:(id) sender { if( list == nil){ list = [[ListClient alloc] ...
1
vote
1answer
475 views

IBAction Doesn't Get Called in Subview

I am creating a simple app that let's the user view movies after clicking buttons. The first screen you see is the Main Menu with 2 buttons. One of them sends the user to a sub view which I coded as ...
1
vote
1answer
58 views

LoginWindowUI.nib

I'm new into this.. trying to create a simple app for macosx, basically I want this app to startup right after the user login with username/password.. and it's just a simple app has a window & ...
1
vote
1answer
558 views

IBActions aren't in File's Owner?

For some reason my IBActions declared in the code aren't in my File's Owner. I've been looking at this for an hour and I can't seem to figure it out. There's probably a really simple explanation for ...
1
vote
1answer
751 views

UIButton in UITableView header not working?

I have added a UIBUtton in a UITableView header and it doesn't seem to be working. It's clickable, but when attaching a IBAction to it, it fails and does nothing. I have read online and saw to put it ...
1
vote
1answer
323 views

Anchor a function to UIButton programatically

How can I anchor a function to my Button which I created this way button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; button.titleLabel.font = [UIFont systemFontOfSize: 12]; ...
1
vote
1answer
467 views

Strange problem with stringByEvaluatingJavaScriptFromString not working with NSUSerDefault value…please help!

I am working on a bookmarking feature for a book reader iOS app I have. The way it is setup now, the user scrolls through a view, and when they want to save, or bookmark their spot before they leave, ...

1 2 3 4