Tagged Questions
Objective-C 2.0 is a revision of the Objective-C language created by Apple to include, amongst other things, an enhanced syntax.
35
votes
15answers
2k views
Style: Dot notation vs. message notation in Objective-C 2.0
In Objective-C 2.0 we got the "dot" notation for properties. I've seen various back and forths about the merits of dot notation vs. message notation. To keep the responses untainted I'm not going to ...
33
votes
3answers
3k views
Should IBOutlets be strong or weak under ARC?
I am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) be strong or weak?
The following:
@property (nonatomic, weak) IBOutlet UIButton *button;
Would get rid ...
13
votes
2answers
4k views
Objective-C 2.0 properties: Why both retain and readonly?
I've noticed that some of Apple's examples include both a retain and readonly modifier on properties. What's the point of including retain if no setter gets generated when we're using the readonly ...
12
votes
3answers
2k views
What's the purpose of an ivar when a property exists?
The following doesn't complain at compilation nor runtime about no name ivar. So why is it so common to see an ivar and @property/@synthesize.
@interface PropTest : NSObject
{
}
@property (retain) ...
10
votes
2answers
1k views
Does Objective-C support Mixin like Ruby?
In Ruby, there's Modules and you can extend a class by "mixing-in" the module.
Module myModule
def printone
print "one"
end
end
Class myClass
extend myModule
end
theOne = myClass.new
...
9
votes
3answers
7k views
UIView and initWithFrame and a NIB file. How can i get the NIB file loaded?
I have a UIView called baseViewand in that i have initWithFramewhere i add some other views and do some custom stuff. The same view also has a NIB file.
Now i have a UIViewController class named ...
8
votes
3answers
2k views
Will GNUstep support @property and @synthesize?
I'm working on a Cocoa app with the intention of using it on Windows and Linux using GNUstep. I've been avoiding Objective-C 2.0 features thus far, but I'd really love to start using at least ...
7
votes
1answer
1k views
Existing ivar 'title' for unsafe_unretained property 'title' must be __unsafe_unretained
I'm just getting to grips with Objective-C 2.0
When I try to build the following in Xcode it fails. The error from the compiler is as follows:
Existing ivar 'title' for unsafe_unretained property ...
7
votes
2answers
901 views
What do you bind NSArrayController's Managed Object Context to in Xcode 4?
I am trying to build an document-based application for beer reviewing that allows you to enter your notes. I have built the model in Core Data and the view in Interface Builder. Following some Xcode ...
7
votes
5answers
2k views
How to get programmatically iOS's alphanumeric version string?
I've been working with the nice PLCrashReport framework to send to my server the crash reports from my user's iOS devices.
However, to symbolicate the crash report, the symbolicatecrash utility ...
6
votes
4answers
4k views
QR Code library for iphone [closed]
Possible Duplicate:
QR code reader for iPhone
am developing an application for iphone to read & create QR Code. is there any common library available in open source ?
6
votes
2answers
693 views
What's the Difference Between nil and Nil
In Objective C?
Are they really the same thing?
How to test that an object is nil?
5
votes
1answer
66 views
Objective-C 2.0 ABI specification
Does documentation for the Objective-C 2.0 ABI exist somewhere on the Internet? The release notes for objc4-493.9 say:
Forthcoming documentation will describe the ABI for the use of compilers and ...
5
votes
1answer
109 views
Why Are Almost All iOS SDK Delegate Methods Optional?
I understand the pros and cons of optional vs. required delegate methods. But I was struck by how few of the iOS delegate methods are required. Is there some wisdom that the iOS SDK designers have ...
5
votes
1answer
79 views
Get the object which called a method
If I have a call from within a random class like this:
@implementation SomeClass
- (void) classMethodFoo
{
int a = [SomeSingleton sharedInstance].aValue;
}
@end
Inside SomeSingleton ...
5
votes
4answers
431 views
Why is “atomic” a default @property qualifier in Objective C when I find myself using nonatomic 100% of the time?
In my few years as an iOS developer I don't think I've ever used atomic on a property. If I can see potential race conditions or data integrity issues due to threading, using atomic on a @property ...
5
votes
2answers
799 views
Since when is it possible to declare Objective-C 2.0 properties in a category?
I always thought that one cannot declare an object property in a category.
Until my partner did it in our app's code, and it seemed to work.
I went on a SO and Google binge to try to explain to him ...
5
votes
4answers
636 views
Objective-C property assignment returns the assigned value?
Say I have the following:
@interface MyClass : NSObject { NSString* _foobar; }
@property (nonatomic, retain) NSString* foobar;
@end
@implementation MyClass
@dynamic foobar;
- (void) ...
4
votes
2answers
669 views
Is any memory leak in iOS accepted at all?
I am new to Objective-C (coming from Java) and I think I am getting a pretty good understanding of memory management.
But when my app loads, I get a extremely small memory leak, that only occurs when ...
4
votes
2answers
623 views
How does one use Obj-C 2.0 with GNUstep?
I'm aware of the existence of libobjc2, and I gather that I'll need to use clang rather than GCC, but I can't find any basic instructions of what's different about the compilation process.
Can anyone ...
3
votes
4answers
169 views
Synthesize property to a Base class' ivar
I have a hierarchy of model objects which I will be displaying on different type of UITableViewCell subclasses. All decision is made on the fly as to which model object should be used and ...
3
votes
2answers
114 views
Testing multi-threading
I'm trying to make sure that my implementation of ObjC multithreading is proper when I transfer the application from single-thread to multiple.
Right now I have unit tests set up to make sure ...
3
votes
4answers
303 views
Planning on writing operating system in Objective-C
At the moment I'm learning objective c 2.0, and soon I plan on learning assembly language, so I can write an operating system. I know it won't be easy, and I know it will take months, perhaps years, ...
3
votes
2answers
459 views
Can multiple (two) persistent stores be used with one object model, while maintaining relations from one to the other?
Introduction
My iOS project ships with a Core Data persistent store weighing some 160MB in SQLite format. There is a ton of grouped information in there, in which users should be able to mark ...
3
votes
1answer
138 views
Pass touch events to one of multiple options
I've created a board of UIImageViews, that are held within a single object as an NSArray. all the imageviews are displayed as subviews of the 'board'(the object that holds the array). What I would ...
3
votes
2answers
137 views
Why Objective-C properties are sort of inconvenient?
It is more of a complain than a question, though maybe someone has some good points on it. So basically if you want an ivar in your Objective-C class have accessor-methods you have to mention it 3 ...
3
votes
3answers
185 views
Is object free / freed on dealloc and / or release?
I recently took an objective-c test to see how I would do.
Turns out my score wasn't anywhere near as good as I hoped. That means more studying.
During the test, I was asked this question:
How do ...
3
votes
1answer
679 views
Returning from method inside a @synchronized block
I'd just like to know if it's advised to return from a method within a @synchronized block? For example:
- (id)test {
@synchronized(self) {
if (a) return @"A";
else return @"B";
}
}
...
3
votes
1answer
293 views
Which NSTextView is the First Responder?
I'm working on a Cocoa programming exercise, and I need to be able to determine which of two NSTextView objects is currently being edited. I think it's something to do with finding the first responder ...
2
votes
4answers
53 views
Getter and Setter Explained?
I am just learning OOP from a book I picked up (Big Nerd Ranch), and it just went through the getter and setter chapter. I would just like to clarify I understand what I have just done. Instead of ...
2
votes
1answer
71 views
For…in statement Objective-C
I am studying Objective-C and I came across this "for...in" statement. I searched for it but i still don't get how it works. Could someone so nice and explain to me in a noob-friendly how this ...
2
votes
2answers
118 views
autorelease keyword
I'm new at objective c 2.0. I ran into this keyword autorelease and I just need some clarifications. I was just wondering what is the difference between the two lines of code below in objective - c ...
2
votes
3answers
60 views
Returning an Array Of ImageViews (IPhone)?
I understand that:
(NSArray *)methodName
would return an array.
(UIImageView *)methodName
would return an imageview.
But how about if I wanted to return an Array of ImageViews?
2
votes
3answers
88 views
Drawing a bridge with Quartz 2D
I'm trying to draw the following image:
Using this objective-c code:
CGContextSetFillColorWithColor(ctx, [[UIColor redColor] CGColor]);
CGContextMoveToPoint(ctx, position.X - (size.width / 2), ...
2
votes
1answer
194 views
Why override the designated initializer of super class?
I was reading the book "Cocoa Design Pattern" and 2 of its point, in chapter 3 (Two-Stage Creation) are making me confused.
Make sure that the superclass’ Designated Initializer is overridden to ...
2
votes
1answer
385 views
Defining constant and passing it as a parameter results in “discards qualifier from pointer target type”
This has been asked so many times in the forum but I need to clarify the concept behind this. I am declaring a const NSString *key = @"SomeConstValue"; and passing that to a method which accept a ...
2
votes
3answers
465 views
What is the point of @property and @synthesize?
I haven't been able to figure it out, and there are no websites which explain it clearly enough... what exactly are the purposes of @property and @synthesize?
Thanks in advance!
2
votes
1answer
467 views
Error “Create a concrete instance!”
I've got another problem in the same code...
I'm getting this error:
initialization method -initWithCharactersNoCopy:length:freeWhenDone: cannot be sent to an abstract object of class ...
2
votes
2answers
1k views
Objective-C 2.0 dot notation - Class methods?
Please note I am specifically referring to the fact that dot notation is being used on class methods, not instance methods.
Out of curiosity, I wanted to see what would happen if I tried to use ...
1
vote
1answer
10 views
Why method invocation in Objective-C called message passing?
Is it like if I "pass a message" between two objects and if they happened to be have been instantiated in different threads then the invoked method would still run in its object's thread?
1
vote
2answers
44 views
Compacting the code: same action for any element of a pair
Is there any way to make code more compact for this situation?
// pseudocode
if (A == 1) {
if (B == 2) {
action1;
}
if (B == 3) {
action2;
}
}
if (B == 1) {
if (A ...
1
vote
1answer
34 views
__strong and __weak keyword placement - Objective-C
The compiler seems to have no problem with the two following declarations:
NSObject * __weak weakThing;
__weak NSObject *anotherWeakThing;
Is there a difference between the two? Is the behavior ...
1
vote
1answer
58 views
storing variable values in NSMutableDictionary
we do have a calculator app in ios5 and we want the users to set their own values to our calculators variable buttons such as "x" or "y". For example the user set "x=5" and wants to do the calculation ...
1
vote
2answers
52 views
How can i get the itinerary between two places?
I have an app with a MapView that implements some annotations that i get it from an API and also i tell the MapView to show the current location of the user. so what i want is getting the itinerary ...
1
vote
1answer
36 views
Purpose of init pattern in obj-c and its use
What is the purpose of the initializer pattern other then in order to assure that the object is properly initialized by its superclass before the init method performs its initialisation.
Why is this ...
1
vote
3answers
74 views
Keyboard covers up my UIViewController?
I have a UIViewController which has a UITextView and UIImageView, when the keyboard comes up it covers up my UITextView. so how can i do to manage that and the same for the UITableView?
1
vote
3answers
52 views
In Objective-C is it possible to keep the entire class inside the .m file?
When I create new classes in x-code it breaks it into a .h and a .m file. can I ignore the .h file and implement the entire class inside the .m file? If so what are the downsides?
1
vote
1answer
56 views
How to dynamically add a method to a class in Objective-C?
I understand a major advantage of Objective-C over C++ is its ability to send messages to objects instead of calling its methods. Secondly you are allowed to dynamically add a method to objects.
...
1
vote
1answer
95 views
Objective C: ARC with IVars declared in implementation file
I found an interesting post describing how, in Objective-C 2.0, instance variables can be declared in the implementation file. Consider this example:
@interface MyClass {}
@end
@implementation ...
1
vote
0answers
39 views
objective-c custom sorting
So, having struggled with this for too long, without much documentation to go on, I thought I'd share my experience for those few who are even noobier than me.
There probably are much cleaner ways of ...