Tagged Questions
155
votes
10answers
94k views
Constants in Objective C
I'm developing a Cocoa app, and I'm using constant NSStrings as ways to store key names for my preferences. I understand this is a good idea because it allows easy changing of keys if necessary. Plus, ...
11
votes
4answers
825 views
What is the significance of starting constants with 'k'?
I'm teaching myself Objective-C and I noticed in a lot of books and examples the use of 'k' and camel-casing in constant definition, e.g.
#define kMyConstant 0
What is the significance of the 'k'? ...
10
votes
5answers
4k views
Objective C - Why do constants start with k
Why do constants in all examples I've seen always start with k? And should I #define constants in header or .m file? I'm new to Objective C, and I don't know C. All tutorials and books assume you know ...
10
votes
3answers
17k views
Defining a constant in objective-c
I want to define a constant in objective-c.
Previously I had the following function:
+(NSString *) getDocumentsDir {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , ...
8
votes
3answers
821 views
How to name a constant in Objective-C?
What's the naming convention for constants in Objective-C (or most widely used way to name them)?
Is there a different criteria for extern constants?
Some styles I have seen:
NSString* const ...
7
votes
3answers
929 views
How to declare my very own CGRectZero like constant?
This is a newbie C/Objective-C question :-)
Let say I want a CGRectOne and a CGRectTwo constants.
How can I declare that?
Thanks,
Jérémy
6
votes
1answer
188 views
Decoding integer and other masks in Cocoa
Cocoa has a plethora of integer masks and codes. For instance, NSCommandKeyMask or NSF1FunctionKey, which are clearly defined and documented in the headers.
However, some can be archaic and when ...
6
votes
1answer
1k views
Objective C const NSString * vs NSString * const
I'm trying to a NSString constant in my .h file to be defined in my .m. I understand that
extern NSString * const variableName; in the .h and
NSString * const variableName = @"variableValue"; ...
5
votes
3answers
282 views
77 unsigned long const warnings when compiling in Debug (Objective-C)
Just wondering whether anyone knows why I would be getting 1 warning in Debug (iPhone Simulator) and 77 warnings in Debug (iPhone Device) when building my application!?
Is there something I can ...
4
votes
3answers
193 views
Constants by another name
First off, I've seen this question and understand why the following code doesn't work. That is not my question.
I have a constant, which is declared like;
//Constants.h
extern NSString * const ...
4
votes
2answers
2k views
Objective c - static members and constants
Whats the difference between:
@interface SomeClass : NSObject {
NSObject *something;
}
and
@interface SomeClass : NSObject {
}
NSObject *something;
? Also, what's the difference between ...
3
votes
1answer
154 views
Objective-C typedef enum in global constants file
OK, this is related to question "Constants in Objective C".
I created Constants.h and its corresponding Constants.m file:
// Constants.h
extern int const BOOKS;
typedef enum SSDifficultyLevel {
...
3
votes
1answer
668 views
“sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers” warning
I have Constants NSString, that I want to call like:
[NewString isEqualToString:ConsString];
Any wrong code here?
I got this warning:
sending 'const NSString *' to parameter of type 'NSString ...
3
votes
2answers
56 views
Constant is magically changing in Objective-C?
In my program I have a #define MAXIMUM_SCALE 10 at the top
The only time this constant is EVER used is in this section of code:
float newScale = [scrollView zoomScale] * ZOOM_STEP;
NSLog(@"%f", ...
3
votes
3answers
434 views
Objective-C/C++ constants
EDIT: My example might have created some confusion. I have changed the example below to reflect what I want to achieve. Hope this is more clear.
I am trying to define a constant in my objective-c ...
3
votes
3answers
425 views
Constant in objective-c
I would like to add some constant keys for my application, these constant can be accessed anywhere in program. So I declare constant in interface file:
#import <UIKit/UIKit.h>
NSString * ...
3
votes
3answers
360 views
Significance of const keyword positioning in variable declarations
What is the significance of the positioning of the
const
keyword when declaring a variable in Objective-C, for example:
extern const NSString * MY_CONSTANT;
versus
extern NSString * const ...
2
votes
2answers
224 views
How to initialize constant member C array in an Objective-C class?
how can I create a constant C array member in an Objective-C class? The lifecycle should be limited to the classes lifecycle and I don't want to use malloc.
At the moment I'm doing this:
@interface ...
2
votes
2answers
135 views
Objective-C Redefine Class
I have some Code that I'd like to share between an iOS and an OSX project. Unfortunately, some classes, while functionally relatively similar (and having greatly overlapping interface definitions), ...
2
votes
1answer
442 views
Objective-C equivalent of Java enums or “static final” objects
I'm trying to find an Objective-C equivalent to either Java enum types, or "public static final" objects, like:
public enum MyEnum {
private String str;
private int val;
FOO( "foo ...
2
votes
1answer
80 views
Possible to get a constants value with string?
Is there a way to get a constants value by using a string for its name similar to KVC i.e:
#define kStringConstTest = @"test";
get the value of this const by knowing that the first part is always ...
2
votes
4answers
2k views
How can I use an NSArray as a global constant?
I'm using a set of Constant.m files, one per target, to define specific things for each target. For example:
// Constants.h
extern NSString * const kDatabaseFileName;
//Constants.m
NSString * const ...
2
votes
4answers
3k views
Objective C defining UIColor constants
I have a iPhone application with a few custom-defined colors for my theme. Since these colors will be fixed for my UI, I would like to define the colors in a class to be included (Constants.h and ...
2
votes
5answers
8k views
How do I declare an array as a constant in Objective-c?
The following code is giving me errors:
// constants.h
extern NSArray const *testArray;
// constants.m
NSArray const *testArray = [NSArray arrayWithObjects: @"foo", @"bar", nil];
The error I get ...
2
votes
3answers
2k views
iphone project constant
I want to have a constant in my project to change between Lite and Pro version. I don't think it is the best way to do it, but I am trying to:
add a constant in my app delegate
#define BUILD_PRO 1 ...
2
votes
4answers
738 views
What is the best way to define string constants in an objective-c protocol?
I have defined a protocol that all my plug-ins must implement. I would also like the plug-ins to all use certain strings, like MyPluginErrorDomain. With integers this is quite easily achieved in an ...
2
votes
4answers
885 views
Unfamiliar C syntax in Objective-C context
I am coming to Objective-C from C# without any intermediate knowledge of C. (Yes, yes, I will need to learn C at some point and I fully intend to.) In Apple's Certificate, Key, and Trust Services ...
1
vote
3answers
53 views
Objective-C constants: NSString comparison using ==?
The discussions I found about setting NSString constants made me code it the following way:
.h file:
extern NSString * const kSectionHeaders;
.m file:
NSString * const kSectionHeaders = ...
1
vote
1answer
49 views
MonoTouch - access to Obj-C Constants
Many times I'll read Obj-C code and need the value to one of their constants present in one of the Obj-C header files.
For notifications, I've been able to find them in MonoTouch such as ...
1
vote
1answer
45 views
Objective-C – Use online constants in app
I have an application which gets it's data (XML) from a source which I don't have control over. That means that the source can at any time change XML tags which would render my application useless ...
1
vote
2answers
48 views
iPhone: Constants for a UI element's coordinate and size?
If I am making the user interface programmatically, what is the best way to store constants for a UI element's coordinate and size? #define, or double const? Should I be putting this in the .h, .m, or ...
1
vote
1answer
211 views
Objective-c constant static NSArray
I am a Java programmer, learning Objective-C and I have a problem with implementation of variables, similar to static final class variables in Java. In class PolygonShape, I would like to have ...
1
vote
2answers
141 views
Linking External Constants — Objective C
In an earlier answer about external constants, the preferred answer says
"Constants.m should be added to your application/framework's target so
that it is linked in to the final product."
I am ...
1
vote
1answer
106 views
Meta-framework / Constants file?
I'm currently breaking down an application into several frameworks, three in total. I believe frameworks are the best solution for this as I can have several units of code independent of each other ...
1
vote
3answers
181 views
Explanation of constants
I have been looking about constants and I don't really understand whats different about them other than they cant be changed programmatically.
extern NSString * const MyConstant;
With this line ...
1
vote
4answers
190 views
Where to place “constants” in cocoa
I communicate with a json api in my cocoa (touch) app.
As a response I get something like this:
"wh": {
"1": ["11.30 - 15.00"],
"3": ["11.30 - 15.00"],
"2": ["12.00 - 14.00", "17.30 - 23.00"],
...
1
vote
4answers
522 views
How to define non string constants in objective-C?
I can define global strings like this:
// .h
extern NSString * const myString;
// .m
NSString * const myString = @"String";
Now I need to define UIcolor similarly, How can I do it?
I'm trying:
...
1
vote
1answer
98 views
Where are constant NSStrings allocated?
I understand that constant CStrings are allocated statically, rather than on the heap.
I also noticed that constant NSStrings have an infinite retain count. Does it hold true that constant NSStrings ...
1
vote
1answer
353 views
Accessing constants using Key-Value Coding in Objective-C
I'm making a program that has a lot of constants. I decided to put them all into a separate class and I'm importing it by the classes that need it. The files look similar to this
// Constants.h
...
1
vote
3answers
453 views
Error on defining an array even though its set via a Constant
I know this is really basic, but its got me stumped...
In Objective-C I'm trying to write:
const int BUF_SIZE = 3;
static char buffer[BUF_SIZE+1];
But I get a storage size of buffer isn't ...
0
votes
3answers
42 views
Why is my 'kMyConstant' macro redefined?
In my app delegate class I define a constant like so:
#define kSomeConstant @"My_Constant_Value"
I then want to make use of this constant in another viewController so I defined it again exactly ...
0
votes
2answers
51 views
Creating constant in objective-c that is called like a class property? (e.g. classA.KEY_FOR_ITEM1)
What would be the way to create a constant in objective-c that is called like a class property? (e.g. classA.KEY_FOR_ITEM1)
That is I see the advice re how to create a constant here ...
0
votes
0answers
111 views
Adding pre compiled headers in Xcode 4 Objective-C
This question is related to this:
Constants in Objective C
I would like to add pre compiled headers to my project to store app constants. I want to this as an alternative to having a constants.h file ...
0
votes
2answers
111 views
Objective C: Accessing constants from other classes
I have a constant in one class that I want to access from another.
I want to access these:
#define kStateRunning 1
#define kStateGameOver 2
#define kStateMenu 3
which are in my GameController.h ...
0
votes
1answer
47 views
How to make objective C string manipulations generate the name of a particular constant?
I've created a Constants.h file with a list of:
#define kw00 @"foo"
#define kw01 @"bar"
...
I also use #import "Constants.h" in the .h. Using newQuote method, I'm trying to randomly select one of ...
0
votes
5answers
362 views
Objective-C: static field and implementing singleton pattern
Good day, friends.
Once again stupid question about Obj-C from newbie :)
I'm trying to implement singleton design pattern in Obj-C:
@interface SampleSingleton : NSObject {
@private
static ...
0
votes
2answers
278 views
Why can I not use my constant in the switch - case statement in Objective-C ? [error = Expression is not an integer constant expression]
So I have an issue with using a constant variable in the following switch statement in Objective-C.
I have Constants.h with the following:
// Constants.h
extern NSInteger const TXT_NAME;
And ...
0
votes
1answer
110 views
Access to superclass's constant
In my universal app in main AppDelegate class I define a constant:
#define kNumerOfPages 2
In AppDelegate_iPhone class and AppDelegate_iPad class I would have access to this constant like normal ...
0
votes
0answers
52 views
Exposing Constants to Subclasses
I have class A which will be subclassed by classes B and C. I need to declare a variable in class A that will be picked up by both classes B and C.
Currently, I do this in the implementation file of ...
0
votes
1answer
162 views
define - constant or literal Objective-C
We have the following code (in the .h. or .m file of Objective-C app)
#define SQUARE_SIZE 28
#define APP_DELEGATE [[UIApplication sharedApplication] appDelegate]
are both of them constants
or ...