Tagged Questions
1
vote
4answers
42 views
UITapGestureRecognizer Error, when I add to an imageview
I use UITapGestureRecognizer to handle An ImageviewTap actions. In the main ViewController it works great. But when i Use another ViewController in my APP, and copy the same UITapRecognizer code I get ...
0
votes
2answers
63 views
Table cell with multiple actions
How do I accomplish something like this:
a table cell with multiple actions inside the text(link to image, since I don't have enough point to paste images)
I want to be able to control what the bold ...
0
votes
0answers
54 views
Add delay for sprite between runaction
I want to ask
I have 4 runactions in ccTouchesEnded, but my sprites output on screen simultaneously
How I can add delay between sprites in my method??
int e = [myArrayAI count];
for (int i1=0; i1 ...
0
votes
2answers
447 views
How to make iPhone Share Sheet black?
Hi can anyone tell me how I can make the Share Sheet in iOS 6 black? I know how to make Action Sheets black. I use this code for Action Sheet:
[actionsheetshare ...
0
votes
2answers
99 views
Change Action of a button depending on a Pickerview Choice iphone sdk
I explain you what I'm trying to do.
I have a PickerView, and a button, i'd like when I select the row "Action1" on my Pickerview, the action become a UIAlert when i click on my button., and when I ...
0
votes
1answer
96 views
How to set priority of action in Iphone?
For example, I have a button, when click this button, it call an action: doAction1.
And an View: when touch in it, it call an action doAction2.
When clicked in this button, I touched in view, too.
Is ...
0
votes
1answer
621 views
How to implement an (iOS) action sheet but with multiple buttons in one line?
I am wondering that how to implement the action sheet like the iphone built in photo edit app.
Go to the Photos app, then select one photo, then click crop button. There is a button called Constrain. ...
0
votes
5answers
206 views
iphone development: one button two actions
In my application I have a button and when it is pressed, lets say "touch Up inside" another view is opened. well my question is, how can I do two actions? I mean, when I pressing the button I want ...
0
votes
1answer
138 views
How to respond to a touch in a UISearchBar and SearchDisplayController iPhone
I have followed this tutorial: http://blog.patrickcrosby.com/2010/04/27/iphone-ipad-uisearchbar-uisearchdisplaycontroller-asynchronous-example.html
In order to get my UISearchBar with ...
0
votes
1answer
315 views
When is target of a button (UIButton) not “self”?
I am a beginner of iOS and in the programming tutorials when adding button programmatically, target is always set to self, and in that controller where it is being created, an action (IBAction) is ...
0
votes
1answer
619 views
How to set actions for Push notification alert view in iOS
In my application I have implemented the Push notification feature and I am getting the notifications. I used the following code in the appDelegate file.
- (void)application:(UIApplication ...
0
votes
2answers
115 views
How to change the action of the first tabbaritem (when clicked)
I'm trying to show a tableviewcontroller as the first page, with the tabbarcontroller in it.
After it is shown I would like to change the action of the first item in the tabbarcontroller to show a ...
0
votes
1answer
159 views
UIAlertView - no actions WHY?
I try to start an action after click on the button in my alterView - but nothing happens ;-( In the same viewController I use an actionSheet with several options - this actionsSheet works perfect but ...
0
votes
4answers
348 views
Can I pass an array argument with @selector for a UIButton?
I've a UIButton on which I want to add a target action which is stored into an NSArray.
I wants something like,
- (IBAction) myAction
{
//Do Something
}
//Add myAction to myArray
[myArray ...
-2
votes
1answer
79 views
How to connect my button's void statement with all of the button's actions.
Sorry if this is a noob question, but All my code is error-free and I cannot figure out how to get the button I press to do all these things. It's connected correctly in interface builder. Anyway, if ...
0
votes
1answer
583 views
iOS Objective-C UIButton action not working correctly
I am making a simple application for iphone (for learning and education purposes). Inside the .XIB file there is a button used to clear all text fields on the screen. I create a "clear:" method for ...
0
votes
1answer
224 views
how to hook up a UIBarButtonItem to play a audiofile programmatically without using IB
Can we use the addTarget function to hook into the UIControlEventTouchUpInside event with the UIBarButtonItem.
Basically i am trying to hook UIBarButtonItem Play into the UIControlEventTouchUpInside ...
0
votes
1answer
195 views
Can I add an action to the Navigation Bar's title view?
I have a vision for something that I want to achieve, but I don't know if it is possible. Basically, I want my navigation bar's title (the one that is colored and formatted all pretty) to act as a ...
0
votes
1answer
112 views
Custom button detecting action outside image
I am developing an app and my requirement is to change the image of button on click.The images are basically the maps of the countries.So,the problem is I made a custom button but it is detecting the ...
0
votes
2answers
130 views
Fire action at specific date and time iPhone
in my Core Data model, I have an entity which has got a date attribute. For example, I'll set this date to 10/07/2011 4:00pm and I want to fire an action when current date will pass the saved date by ...
0
votes
3answers
1k views
set up an action with a tab bar item - iphone
I don't no if this is possible, but this there a way to treat a tab bar item click like a regular button click(action)? Here's the reason: I have a tab bar in my application, and for most of the tab ...
0
votes
1answer
72 views
Can I define a new outgoing action to connect in Interface Builder?
Ok, what I actually want to do is change the tab when a user presses a button in an AlertView I pop up.
My custom FirstViewController creates the AlertView and sets itself as the delegate. I want ...
0
votes
3answers
818 views
display uiactionsheet from tab bar item in uitabbarcontroller
In one of my apps, I want to display an action sheet from a tab bar item in a tabbar controller and this action sheet should be accessible through out anywhere, if I click that tab bar item. I afraid ...
0
votes
0answers
528 views
UISegmentedControl SetSelectedIndex without triggering Value Changed action?
I'm attempting to change a segmented control's default position when a view loads according to some data checks, and the whole thing works just fine except that when I call [segmentedcontrol ...
3
votes
3answers
244 views
Cannot get button to call controller code iPhone 4
My View has a button, myButton, in my XIB. In the XIB the File's Owner is of class HelloWorldViewController. And the view for File's Owner is my View in the XIB.
In the ...
1
vote
5answers
3k views
UIAlertView buttons action code
Do anyone know how to make actions for the buttons in UIAlertview? if so, please guide me.
0
votes
1answer
143 views
iPhone: chat view with buttons with different be behaviours
in my chat view user can send text message, location or an image.
Location and image are represented by a UIBUtton.
How can handle informations about the image or location to show in the selector's ...
0
votes
1answer
119 views
How can one move to a new screen after clicking done on the iPhone keyboard?
I'm a new iPhone developer, so I'd really appreciate some guidance.
I've started off with something...but I don't know what to do from there.
- (BOOL) textFieldShouldReturn:(UITextField ...
10
votes
4answers
21k views
How do you add an action to a button programmatically in xcode
Can you please help with this. I know how to add an Ib action to button through interface builder with the dragging thing but I want to add the action programmatically to save time and not have to ...
0
votes
1answer
789 views
UIView Receive Touch And Slide Action
I am a newbee in iOS development; and i want to develop a simple application.
In my application there is a view that is a member of xib. I want to receive user's touch and slide actions on my view to ...
3
votes
2answers
855 views
Detecting when a UIScrollView it at a certain point and perform an action
I'm trying to figure out how to do this. Been stuck on this for a really ling time. I'm trying to detect when a UIScrollView is in a perfect location and perform an action. Here I have a UIScrollView ...
0
votes
3answers
2k views
0
votes
2answers
155 views
[xcode-iPhone]two quick touches
Hello, I would like to know how a button that recognizes a touch and two quick touches
0
votes
1answer
163 views
Cocos2D: moveBy undeclared?
I tried looking this up, but could not find anything relevant, but I think it's a simple problem. I've been learning Cocos2D, and now all of the sudden it's saying moveBy is undeclared when I try to ...
1
vote
1answer
151 views
Simple UIButton Question
I have 1 button and 2 methods. One method calls this:
[button addTarget:self action:@selector(action1) forControlEvents:(UIControlEvents)UIControlEventTouchDown];
And the other calls this:
[button ...
0
votes
1answer
69 views
Outlets and buttons ignored
My problem is that I cannot access any of the controls in a view defined using interface builder. This is the .h code for the Navigation bar (as an example):
#import <UIKit/UIKit.h>
@interface ...
0
votes
3answers
4k views
How to trigger a button through code, in Xcode
In an iPhone app I am working on, I need to place buttons in a UIScrollView, but because of the fact that I need to place so many buttons to scroll through, I cannot place them in interface builder. ...
1
vote
1answer
525 views
How can I make a custom orientation lock action?
I would like to make a custom orientation lock button for a reader app of mine, and I was thinking it wouldn't be too bad to whip up, but alas I am the one getting whipped.
To start off I do have ...
0
votes
1answer
412 views
Way to force iOS action to wait until action before complete?
I have an iOS action - (void)download; - which I have running at the launch of my iOS application.
However, I need another - (void)showData;- which displays data on a UIMapView to wait until all the ...
3
votes
1answer
4k views
iPhone SDK : Add UISlider and UISwitch in a table view only crash when touch slider?
OK,here is my question
foe example,I create a UISwitch in the first 3 cell's accessoryView
theSwitch = [[[UISwitch alloc] initWithFrame:CGRectZero] autorelease];
[cell addSubview:theSwitch];
...
9
votes
8answers
24k views
Passing parameters on button action:@selector
I want to pass the movie url from my dynamically generated button to MediaPlayer:
[button addTarget:self action:@selector(buttonPressed:) withObject:[speakers_mp4 objectAtIndex:[indexPath row]] ...
0
votes
3answers
2k views
Restarting an action in cocos2D for the iPhone
If I am using an action that does not repeat in cocos2D how do I restart that action?
I am using the code:
CCAnimate* action = [CCAnimate actionWithAnimation:myAnimation];
[mySprite runAction: ...
0
votes
1answer
325 views
Switching views - iPhone development
I need help figuring out how to change out the view in my application. I have a wonderfully working view that I have finished and now I'd like to be able to switch the view to a brand new, blank white ...
0
votes
2answers
463 views
Multiple Actions to 1 button in iPhone sdk
What I'm trying to do is, I have a button that opens up the photo library so the user can choose the photo and then the photo is then displayed on another view (another .xib file). How can I do this? ...
4
votes
1answer
2k views
Add custom action:@selector to UISwitch on TableViewCell
I have TableCellViewController for managing cells in my UITableView. Each cell has a label na UISwitch (dictTypeSwitch). A want to assign method to switch events so I can save the state of button.
So ...
0
votes
2answers
97 views
If i want perform some action if I bring two iPhones closer, how do i do that?
my question is that i want to write a simple code in xcode, by which if i bring another iphone closer to mine, and make contact... then certain function is called ?
help ..
4
votes
4answers
24k views
How to set target and action for UIBarButtonItem at runtime
Tried this but only works for UIButton:
[btn setTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
1
vote
2answers
1k views
iPhone table view - some button/action questions
I created a table view that is populated with a custom UITableViewCell (like this). Each of the cells contains two UIButtons. I assign the action to the button like this:
[decreaseButton ...
0
votes
2answers
811 views
Action sheet not opaque
For some reason the top half of the my action sheet is not opaque. I have created the view and action sheet using the code below:
//allocate the view
self.view = [[UIView alloc] ...
1
vote
2answers
3k views
How can i know which button is clicked? Objective C
I am doing Presence1 in Assignment which require me builds a multiple screens application.
I have two ViewController, vc1 and vc2. In vc1, i have two buttons. I use a same method for them and the ...





