0
votes
2answers
100 views

Returning 'self' while it is not set to the result of '[(super or self) init…]' in my custom alloc method

I init my custom view with my custom method : 1) In My View Controller I am calling custom view and pass this array to my custom class that is of type UIView NSArray *array = [[NSBundle mainBundle] ...
0
votes
3answers
84 views

What will be the best way to replace self [closed]

I have this code that works great, but out of curiosity how can I replace the word self in this method?This is a navigation app btw, and been trying all sorts of methods to replace it. ...
2
votes
5answers
104 views

self IBAction and sender

I am a newbie iOS programmer, here is my question: I have mapview and segmented control, also changeMapType function which get called when UIControlEventValueChanged occures, like this // change map ...
0
votes
3answers
156 views

Replace “self” under ARC

Usually my code with loading custom view from xib looks like: @implemenation MyCustomView - (id)init { [self release]; if ((self = [[NSBundle loadViewFromXibName:@"MyCustomView" ...
3
votes
4answers
264 views

IOS allocated objects is not referenced later in this execution path retain count +1

In my appDelegate.h file I do this: CLLocationManager *locationManager; and @property (nonatomic, retain) CLLocationManager *locationManager; Then later in the .m file: ... @synthesize ...
0
votes
1answer
808 views

addObserver on self

A pretty simple question, but I can't seem to find an answer. (Developing an iOS 5+ app). In my AppDelegate, I have a property, let's call it @property (non atomic) BOOL aFlag;. I'd like my ...
1
vote
3answers
881 views

iOS: Usage of self and underscore(_) with variable [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? I have been very confused with using self or underscore with variable name after ...
-1
votes
1answer
78 views

IOS: When declaring properties in a .h what's the difference between self.var and just var? [duplicate]

Possible Duplicate: Objective-C - When to use 'self' I needed a variable to be passed from one view to another so I made a property called StringC in the .h and accessed it using ...
0
votes
1answer
27 views

Draw rect causing errors, cant refrence myview

Here is my code. I'm trying to access the frame of my view. First i nslog self, to make sure the view is allocated, and then i try to nslog the frame of my view, it returns null. Any ideas? Code: - ...
0
votes
4answers
137 views

Why can't I initialize getter this way in Objective C?

I'm a bit confused why I can't initialize a getter this way: @synthesize stack = _stack; - (NSMutableArray *) stack { if (self.stack == nil) { self.stack = [[NSMutableArray alloc] init]; ...
1
vote
1answer
166 views

calling a method using self results in error

I'm writing an App that is parsing Data from an XML-Doc on the web. So when it finishes loading it is supposed to call the Parsing Method as follows. ...
0
votes
4answers
823 views

Call method in ViewDidLoad()

I'm calling a method on a key event which updates a label. [self updateFolderText]; When I do this in the event method it works, but when I try to do this in the ViewDidLoad() I get a compiler ...
0
votes
5answers
522 views

Objective-C: _variable

OK, this must have been asked before but I looked like mad and found nothing: I have a simple array in my iphone app which I define like so: @property (nonatomic, strong) NSArray *pages; @synthesize ...
1
vote
1answer
296 views

Will self retain within block?

Before/After call the block, the retaincount is always 1. From apple block doc we know that the self should retain. Can anyone know why? NSLog(@"Before block retain count: %d", [self retainCount]); ...
4
votes
2answers
2k views

Instance variable used while 'self' is not set to the result of

I'm working with SGAREnvioroment, and I get the following error: Instance variable used while 'self' is not set to the result of '[(super or self) init...]' In this piece of code: @interface ...
2
votes
2answers
2k views

clickedButtonAtIndex in appdelegate is not called

I am calling UIAlert with 2 buttons "Cancel" and "OK" in MyapplicationAppDelegate.m file , the alert is called but on tap of "Cancel" or "OK" button -(void)alertView:(UIAlertView *)alertView ...
1
vote
2answers
975 views

Objective-C: self = nil doesn't set instance to null value

I've got the next code, pretty simple: //SecondViewController.m if(contentRvController==nil){ contentRvController = [[ContentView alloc] initWithNibName:@"ContentView" bundle:nil]; ...
2
votes
2answers
230 views

after self released

I'm using a third-party Objective-C library that makes a web request in a background thread, then returns the result by using [self performSelectorOnMainThread:...] which then calls a delegate method. ...
2
votes
4answers
2k views

iOS First Application “self.userName = textField.text” question. When to use self

Here is a code snippet from Apple's "Your First iOS Application" document. - (IBAction)changeGreeting:(id)sender { self.userName = textField.text; NSString *nameString = self.userName; if ...
4
votes
4answers
377 views

When to access property with self and when not to?

Can anyone explain the difference between setting someObject = someOtherObject; and self.someObject = someOtherObject; if someObject is a class property created with @property (nonatomic, retain) ...
7
votes
6answers
1k views

When should I use the “self” keyword?

When should I be using the self expression in my iphone development applications? say i have 2 fields: UITextField *text1; and NSString *str1; retained and synthesized. when i am accessing either of ...
5
votes
5answers
894 views

Objective-C: When to call self.myObject vs just calling myObject

This little bit of syntax has been a bit of a confusion for me in Objective-C. When should I call self.myObject vs just calling myObject? It seems redundant however they are not interchangeable. ...
1
vote
5answers
395 views

what is self? when should i use it?

can you explain me the self in the objective-C 2.0 ? when and where should i use? is it similar with this definition in java?