Tagged Questions
1
vote
2answers
336 views
Passing Arguments with Tap Gesture Recognizer
This question had been asked in some form before, but I could not find an answer that would be applicable to my situation.
In a nutshell: I am building a gallery module for my application. It ...
1
vote
5answers
115 views
Passing any control as an argument of function
I want to make a common function which takes a control as an argument (like UITextField, UIButton etc.)
Its working fine if I do like this
- (void) myFunction : (UITextField*) : control
{
}
//But ...
1
vote
3answers
1k views
Sending an NSMutable Array to a php script in iOS
I am making an iPhone app which needs to send a couple of arrays to a php script and then the php script needs to take the value(s) of those arrays and write an xml file. I know how to write the xml ...
0
votes
1answer
334 views
Using arguments passed into a function iphone SDK
Wondering what I am doing wrong here. I am trying to pass an integer to my custom class and when I output the argument in the function is is some random number instead of what I pass. Here is my ...
0
votes
2answers
1k views
Pass-by-value argument in message expression is undefined
I'm developing an iPhone application and I getting that warning at method:
NSNumber *latitudeValue;
NSNumber *longitudeValue;
[self obtainLatitude:latitudeValue longitude:longitudeValue];
The ...
0
votes
2answers
2k views
Trying to pass CGrect to performSelector withObject
I'm trying to pass a CGRect:
SEL frameSel = NSSelectorFromString(@"setFrame:");
CGRect rect = CGRectMake(10, 10, 200, 100);
[object performSelector:frameSel withObject:rect ];
But this does not ...
3
votes
3answers
5k views
Passing a touch event to all subviews of a View Controller
I have a view controller which creates multiple subviews on top of it. All subviews and the view controller accept touches. How can i communicate the touch point information to all the subviews on ...
3
votes
2answers
8k views
Pass and access structures using objective-c
I want to know how to pass structures to another function and subsequently access that structure in the called function. I'm developing for the iPhone and the reason I'm using structs is so that I can ...
0
votes
5answers
3k views
Passing variables in objective C
Normally i've been passing variable around in init methods, but I can't do that this time because I have a var in one ViewController class displayed using a tab bar and I need access to it from a ...

