In Objective-C, declared properties are a convenient way to replace the declaration and manual implementation of accessor methods for objects.
3
votes
4answers
372 views
Should a BOOL ivar be a pointer to allow another class to set it?
My class has a BOOL property that needs to be set by another class, so I am trying to use a pointer. I'm declaring a property for it like this:
@interface SomeClass : SuperClass
{
BOOL *_shared;
...
0
votes
2answers
39 views
Memory efficiency of three properties compared to one NSDictionary
I want to pass some data to my object and there are two options for me.
Regarding memory - what's more effecient? To declare three properties or to to declare one NSDictionary using ...
0
votes
4answers
56 views
Why are there only sometimes compiler errors when accessing a property without self?
I noticed that in some old versions of Xcode you could use properties of objects without self just fine.
Now it gives me an error when I try to access my property without self, but today I'm writing ...
1
vote
4answers
105 views
Protect from adding object to NSMutableArray in public interface
I want to protect access to NSMutableArray in public interface
I am trying to do this by defining property as NSArray in public interface and as NSMutableArray in private interface like this:
...
0
votes
2answers
45 views
Does setting a property on a property call the first property's setter? [duplicate]
If a class has a custom setter for a property:
@interface OuterClass : NSObject
@property InnerClass *obj;
-(void)setObj:(InnerClass *)obj;
and InnerClass itself has a property:
@property ...
4
votes
1answer
88 views
Am I missing any points in my argument in favor of atomic properties?
I read this question (and several others):
Atomic vs nonatomic properties
I fully understand (at least I hope so :-D ) how the atomic/nonatomic specifier for properties works:
Atomic guarantees ...
3
votes
1answer
175 views
Using performSelector: to access BOOL property
I am using performSelector:, which returns an id object, to call several other methods. The return type of those methods can actually be either be a BOOL, int, NSDate or any other kind of object.
How ...
2
votes
3answers
361 views
Compiler error “use of undeclared identifier” when I remove my @synthesize statements
With the latest LLVM build, the requirement for synthesizing properties has been removed.
Therefore I was able to remove all my @synthesize statements except for the ones for ...
-1
votes
3answers
209 views
Variable was not declared in this scope C++
i'm trying to call a function in another .h file named display that receives a pointer for a std::vector<vector<double> > but when i try to call it i get the error that variable was not ...
4
votes
1answer
200 views
Declare properties in .h interface or in an extension in .m file?
In Objective-C, is it best practice to:
Declare objects such as buttons in the .h and then synthesize in the .m
.h
@interface SomeViewController : UIViewController
@property (strong, ...
2
votes
2answers
260 views
Why does Xcode automatically create variables with underscores?
Why in the newest version of Xcode (dp-4) are variables declared with retain,nonatomic made to use the underscore before the variable name? Does this create some sort of type safety?
For example, I ...
1
vote
3answers
132 views
Inverting a BOOL property without using dot syntax
In this line of code I am reversing a BOOL value:
someObject.boolValue = ![someObject boolValue];
How can I rewrite this line in "pure" Objective-C syntax, without dot syntax?
0
votes
1answer
200 views
Why can't I access the auto-synthesized ivar?
I've been reading that with the lastest version of Xcode you don't even need to use synthesize to generate ivar, getters and setters, that Xcode itself handles this for you and creates something like ...
3
votes
3answers
425 views
Will the compiler auto-synthesize an ivar for a property declared in a category?
Before so-called "Modern Objective-C", when creating a new property in category, we needed to implement setter and getter methods. Now, we don't have to do @synthesize; the compiler will automatically ...
1
vote
2answers
82 views
Why the setter is called for one property but not the other?
I took this code from the Big Nerd Ranch iOS Programming book. In the code, they are assigning two instance variables, coordinate and title. Why is coordinate assigned directly, and title is set by ...
0
votes
0answers
33 views
Quick inquiry about ivars scope [duplicate]
Possible Duplicate:
What is the visibility of @synthesized instance variables?
What would the scopes (@private, @protected, etc.) of these ivars be?
-@property/@synthesize
-declared in ...
1
vote
2answers
316 views
Trying to use copied NSMutableString property causes an exception
I started a small Xcode project to investigate whether an NSMutableString property should be copy or retain. I declared my property with the copy attribute:
@property (nonatomic,copy) ...
4
votes
2answers
703 views
How does the new Apple LLVM 4.0 “default synthesize” feature operate?
I was going through the release notes for Xcode 4.4 and noticed this:
LLVM 4.0 Compiler
Xcode now includes the Apple LLVM Compiler version 4.0, including the following newObjective-C language ...
3
votes
3answers
324 views
How to add some code to synthesized getter/setter while keeping synthesized code
I need to, for example, execute NSLog(@"Executed.") every time my synthesized getter or setter gets called. I see 2 ways to do that:
Find some snippets that work probably like synthesized ones. This ...
1
vote
1answer
1k views
When to use strong or weak for properties
I have a table view as an IBOutlet, and by default XCode sets its property to be strong rather than weak. Sometimes I get a "recieved memory warning" message. So I tried to change many properties from ...
3
votes
2answers
1k views
Assignment to ivar in a Block via weak pointer
I have a read-only property isFinished in my interface file:
typedef void (^MyFinishedBlock)(BOOL success, NSError *e);
@interface TMSyncBase : NSObject {
BOOL isFinished_;
}
@property ...
7
votes
4answers
3k views
Should an NSString property under ARC be strong or copy?
When not compiling with ARC, it is recommended to use copy properties for data types such as NSString. I could not find proper documentation on the use of copy in ARC mode. Can someone tell me what's ...
4
votes
1answer
574 views
Is there a pattern to override a property?
The Objective-C runtime keeps a list of declared properties as meta-data with a Class object. The meta-data includes property name, type, and attributes. The runtime library also provides a couple of ...
0
votes
3answers
149 views
Xcode iPhone SDK (5.x) - Accessing a NSString inside AppDelegate
I want to access a NSString from AppDelegate.m that is located inside ViewController.m.
I have a Single View Application, and i want to save my NSString using applicationDidEnterBackground: inside ...
6
votes
2answers
89 views
Why is [foo view] behaving differently than foo.view in my code?
Purely by accident I discovered that calling [bar.view addSubview:[foo view]] doesn't work, but [bar.view addSubview:foo.view] does in the following code.
foo=[fooViewController alloc] ...
0
votes
3answers
82 views
C++, recieve this when trying to create classes: error: no ‘void media::*()’ member function declared in class ‘media’
Somewhat new to c++, attempting to create classes/functions to make my future code clean. I am using Code::Blocks to create my program and at the moment receiving the above message for the following ...
2
votes
1answer
142 views
Why doesn't this UIView get added as a subview under certain circumstances, but does under others?
I have a UIView viewForRootVc that is a declared property for a UIView subclass NewView. It's NewView's responsibility to initialize viewForRootVc, but then a subclass NewViewSubClass sets its ...
1
vote
1answer
240 views
If a property with a strong attribute is assigned to directly in a method will ARC generate a retain? Or is it necessary to call the setter?
If a property with a strong attribute is assigned to directly in a method will ARC generate a retain? Or is it necessary to call the setter (either by dot-notation or calling the setter directly)? In ...
1
vote
3answers
100 views
Do properties default to nil?
If i don't use an ivar for properties, but do this:
@interface someClass : NSObject
@property (nonatomic, retain) NSArray * someArray;
@end
@implementation someClass
@synthesize someArray = ...
1
vote
3answers
753 views
Why does the property declaration set a boolean attribute's type to NSNumber when having Xcode automatically generate managed object class files?
When I have Xcode automatically create the class files for the entities in the data model, any attributes I've specified as Boolean get a type of NSNumber in the property declaration:
@property ...
2
votes
1answer
218 views
Does key-value coding support declared property's custom accessor name?
Key-Value coding of Cocoa makes get/set operation to properties simple. Anyway documentation says it only recognized pre-defined naming patterns. I think Declared Property could be supported by this ...
2
votes
1answer
515 views
How to resolve property getter/setter method selector using runtime reflection in Objective-C? (or reverse)
Objective-C offers runtime reflections feature. I'm try to find getter/setter selector name of a declared property. I know the basic rule like field/setField:. Anyway I think runtime reflection should ...
5
votes
4answers
3k views
Get property name as a string
I need a way to pass a property and get the name assigned to it. Any suggestions?
@property (nonatomic, retain) MyObject *crazyObject;
NSString *str = SOME_WAY_TO_GET_PROPERTY_NAME(crazyObject);
// ...
0
votes
3answers
806 views
Using a C array as a property
I need to declare a property for a C array of a custom struct type.
Can someone explain what I should be doing with this C array as far as property declarations? Should I not be using a property ...
23
votes
4answers
8k views
myView.frame.origin.x = value; does not work - But why?
I know that I can't use this:
myView.frame.origin.x = 25.0;
and that I have to use this instead:
CGRect myFrame = myView.frame;
myFrame.origin.x = 25.0;
myView.frame = myFrame;
And I'm doing it ...
1
vote
3answers
375 views
Is there a difference between setting a property with the dot or the bracket syntax?
Given the property declaration below, does method (A) work in exactly the same way as method (B)? I just want to check that self.yellowViewController = yellcon_New; is going via my setter, so that the ...

