Tagged Questions
0
votes
3answers
85 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.
...
0
votes
1answer
124 views
Values in self object are being changed to null objective c
if([elementName isEqualToString:@"EmpWithNameAndID"]){
[emps addObject:empObject];
NSLog(@"count of emps is : %d",emps.count);
self.managedObjectContext = ...
-1
votes
2answers
81 views
What is the main use of self? [closed]
I am working on a ARC based project. I am just wondering what is the main use of self ?
I am having an array as follows
@property(strong,nonatomic)NSMutable *dataArray;
I am initializing the ...
1
vote
5answers
90 views
Using self. to set but not to access causes issues
I am currently getting confused why the following works in some cases but not others. When using the following code:
NSString *currentLoc = [[NSString stringWithString:sceneName] retain];
...
0
votes
4answers
138 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
167 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.
...
1
vote
3answers
939 views
In Objective-C, how to use 'self' in main() function?
I have the definition:
@interface MyClass: NSObject
{
NSString *str;
id delegate;
}
-(id)initWithStr:(NSString *)str
delegate:(id)delegate;
@end
and when i send message to my object ...
10
votes
2answers
2k views
What's the Point of Using [self class]
Is this code correct
@implementation Vehicle
+(id) vehicleWithColor:(NSColor*)color {
id newInstance = [[[self class] alloc] init]; // PERFECT, the class is // dynamically identified
...
5
votes
5answers
897 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.
...
