Tagged Questions
0
votes
0answers
19 views
static library - check flag
I am not sure if there is a solution for this. Most likely there is I just don't know about it.
I have a static library that I use for many projects. Most of the time I am in DEV mode but once in a ...
0
votes
5answers
106 views
how to call a variable of another class without using objects or class methods?
In my app, there is a constant in a common class which defined as
#define IMG_INIT_URL @"http://www.xxxx/index.php"
Now i have a requirement of change it as a variable.But my problem is that i ...
0
votes
3answers
91 views
iOS Writing Macro detect 3.5 inch or 4 inch display [duplicate]
I am trying to write a macro to determine the device is 3.5 inch or 4 inch. Some thing similar below.
#define IOS_OLDER_THAN_6 ( [ [ [ UIDevice currentDevice ] systemVersion ] floatValue ] < ...
0
votes
0answers
43 views
Macro called in header generating “ Expected identifier or '(' ”
When the CGRectDivideWithPadding macro is called like this in the .h file:
CG_INLINE
void CGRectDivideWithPadding(CGRect rect, CGRect *slicePtr, CGRect *remainderPtr, CGFloat sliceAmount, CGFloat ...
1
vote
0answers
63 views
Preprocessor target checking
I wanna use preprocessor commands to test which target i'm compiling for.
Every egs i read told to do that :
-Add a preprocessor macro in my target.
-Do this :
#ifdef TARGET_NAME_MACRO
...
1
vote
1answer
61 views
Objective-C accessor template
I've been working on a rewrite of my model layer to use across several existing apps. The existing codebase is dated and I'd like to generalize my approach to lend to easier extension in the future ...
0
votes
2answers
66 views
How to pass the result of a function as a Macro variable?
Say I've set up a macro expansion as follows...
#define WARN_START @"DANGER"
#define WARN_RESET @"THE COAST IS CLEAR"
#define WARN(x) WARN_START x WARN_RESET
INPUT WARN(@"*** Your boss is coming. ...
0
votes
1answer
50 views
objective c macro not working [duplicate]
The following macro is giving me a parse error. cant see whats wrong here.
#define adjust(tag, x, y) if (self.tag==tag) { origin.x += x; origin.y += y; return origin; }
....
adjust(20, 28, 265)
...
2
votes
3answers
88 views
Creating a macro to perform default init
I have a lot of methods that repeat this simple boilerplate:
- (id)myObject {
if(!_myObject) {
self.myObject = [_myObject.class new];
}
return _myObject;
}
So I want to replace ...
0
votes
2answers
75 views
An Xcode macro for creating property setters
I have a class with a number of properties. When each property is set I need to update the UI of my application. The setters look something like this:
@synthesize trackHighlightColour = ...
0
votes
4answers
192 views
Objective c macro that checks the device [duplicate]
I need a macro that determines whether the device is an iPhone 4, or an iPhone 5. I was told that there is a macro that can do this. Does anyone know what it is or where I can find it? Thanks for the ...
1
vote
2answers
151 views
define a macro to replace code
I'm using TestFlight and I've got this macro to replace NSLog the the TestFlight remote logging equivalent.
#define NSLog(__FORMAT__, ...) TFLog((@"%s [Line %d] " __FORMAT__), __PRETTY_FUNCTION__, ...
0
votes
1answer
84 views
Weird issue with Macros and ARC
OK, so here's my issue...
My Macro definitions
#define DRK_INIT(X) -(id)init \
{ \
self = [super init]; \
if (self) { \
X \
} \
return self; \
}
#define DRK_DEALLOC(X) -(void)dealloc \
{ \
X \
...
0
votes
5answers
229 views
How can I write a 'clamp' / 'clip' / 'bound' macro for returning a value in a given range? [closed]
I often find myself writing some thing like
int computedValue = ...;
return MAX(0, MIN(5, computedValue));
I'm sure there is some better way to write this in regards to readability and pitfalls ...
2
votes
3answers
84 views
Confusion with Macro expansion [duplicate]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
What problems might the following macro bring to the application?
I wrote a sample ...
1
vote
3answers
465 views
How to test if defined macro is empty at compile time (objective-c / c)?
Is it possible to do check if I've got an empty define? IS_EMPTY_OR_UNDEFINED is a fictive macro I just came up with.
#define constantA 0
#define constantB 1
#define constantC null
#define constantF ...
-5
votes
2answers
56 views
Want to create a macro which check for string [closed]
I want to create a macro for my code which check value which I get from server is string or not.
Description: I got array/dictionaries from server side.
I want string values from server side. But in ...
2
votes
3answers
171 views
Control macro compilation per source file with define
Is it possible to have a header file compile differently in two different source files by using defines in the source files?
For example, if i have a single header included in two source files as in:
...
2
votes
1answer
109 views
Macro constant for something like status bar height
I know how to define constants and macros using C. Is there any way to define a constant in Objective-C like this:
#define STATUSBAR_HEIGHT [UIApplication ...
0
votes
2answers
65 views
Is it possible/smart to write a lazy loading macro implementor?
My code (especially as I get more into TDD) has lots of lazily-loaded properties, like:
@interface MyClass ()
@property (nonatomic, strong) MyFoo *myFoo;
@end
@implementation MyClass
- (MyFoo ...
1
vote
1answer
465 views
Objective C - Defining macro to call a method?
I want to define a macro to call the following, Is this possible?
I also want it to accept format string.
- (void)logString:(NSString *)string withLogLogLevel:(LogLevel)logLevel
{
// Sav log to ...
0
votes
1answer
268 views
Workaround for: Use of undeclared identifier '_cmd'
I have a special NSLog method swizzle that prints the current method as part of the log statement.
For Objective-C methods, I have a macro that uses: NSStringFromSelector(_cmd)
For non Objective-C ...
0
votes
1answer
104 views
Code that won't compile in C, C++ and Obj-C with a specific error message
I'm replacing one C-style macro with another.
#define OldMacro(...) {...}
#define NewMacro(...) {...}
I'd like to rewrite the old version of the macro so that it fails to compile with a specific ...
1
vote
1answer
163 views
Macro to concatenate variable number of strings
I wrote this to concatenate two strings:
#define Append(x, y) [NSString stringWithFormat:@"%@%@",x,y]
However, what if I have more than just two NSString objects. Is there way to modify this to ...
0
votes
1answer
255 views
How to use Ternary Operators in a Macro in Objective-C?
I have a Universal iOS app that loads certain pages into the UIWebView for the user to see. Now there are a different set of pages for iPad and iPhone(each device type has its own directory of pages). ...
1
vote
1answer
64 views
Redefining Macros
In my application I have to redefine a macro. I did like this.
-(void)viewDidLoad{
#undef kMacro
#define kMacro @"New Value"
}
It is working fine within this function. When I put NSLog inside ...
0
votes
0answers
33 views
part of view not show in 10.8
My app is based on skim pdf reader.. http://skim-app.sourceforge.net.. It works well with 10.7.4 Xcode 4.4.1 but part of the view is hidden when it comes to 10.8.2 Xcode 4.4.1?
first image shows ...
0
votes
1answer
97 views
Xcode - macro for multiple methods
I would like to put all of the following into one macro so that I can include these methods in different view controllers with one line of code. In this case defining a parent VC with the methods ...
5
votes
1answer
3k views
Whats the difference between #if and #ifdef Objective-C preprocessor macro?
How to define preprocessor macros in build settings, like IPAD_BUILD, and IPHONE_BUILD (and how to use them in my factory methods)?
I'm using these by heart now, would be cool to know what is going ...
1
vote
1answer
129 views
Wrapper for NSLog
I have seen examples on wrapping NSLog but am not 100% sure on the details.
e.g. #define debugLog(fmt,...) NSLog(@"%@",[NSString stringWithFormat:(fmt), ##__VA_ARGS__]);
What exactly are the ...
0
votes
2answers
305 views
Objective c - Macro with NSDictionary as parameter
I have a method that I want to execute only in some cases (for example I don't want to execute it in debug mode..)
This method has two parameters: NSString and NSDictionary
For example this class ...
0
votes
1answer
149 views
Separate code between different versions of Mac OS X?
I want some code tobe compiled under 10.6 and below but not 10.7 and above.
For example:
#ifdef current version is MAC_OS_X_VERSION_10_6 or below
// do this
elif current version is ...
1
vote
3answers
621 views
How to define a function macro to check key between multiple localized string files?
I have a Localizable.strings file for my project's i18n, and a lib uses KYLocalizable.strings.
I have considered to make Localizable.strings "subclass" from KYLocalizable.strings, but it cannot as ...
1
vote
2answers
107 views
ifdef syntax doesn't work
I want dynamically define a constant based on the different device heights.
I tried to use this code but it doesn't work:
#define isPhone568 ([[UIDevice currentDevice] userInterfaceIdiom] == ...
1
vote
4answers
208 views
Objective-C ARC and GCC ({}) extension compatibility?
I'm converting some Objective-C code to ARC that makes heavy use of the GCC "Statements and Declarations in Expressions" extension ({}).
The GCC extension is being used in preprocessor macros to ...
2
votes
3answers
361 views
Inline function versus macro
I'm working on an iOS app using C and Objective-C, and I want to write a very small piece of code that will be executed thousands of times from more than one place. Is it safe to make this an inline ...
-2
votes
1answer
471 views
How to define array in Macros in Objective-c?
Is there any possibility to define arrays in macro in objective-c.
1
vote
0answers
51 views
How can we print different types of data with one function
It's inspired by:
How can we print different types of data types in objective-C?
However, I want an NSLog type of function where if I do
This is my current macro
#define ELog( s, ... ) NSLog( ...
0
votes
1answer
310 views
Use of undeclared identifier for a macro
In my app i'm performing following steps
1) Created a .h file Say, GlobalMacros.h
In GlobalMacros.h
#define IP_ADDR @“SERVER_IP”
2) In my apps .pch file
import “GlobalMacros.h”
Then in rest of ...
3
votes
3answers
203 views
Calling an optional method in superclass (Objective-C)
I'm trying to create a generic implementation for the NSCoding protocol.
The code will be wrapped around in a macro the will implement NSCoding.
In order to implement the protocol, we need two ...
0
votes
2answers
189 views
What are the pros and cons of macros (#define) in objective C?
I wonder if macros only have pros in any programming language. As there must be the limit we can create macros, and in frequency of use.
Suppose we create 100 macros in a class and imported that in ...
0
votes
1answer
547 views
__VA_ARGS__ Macro expansion
I'm trying to get my macro to work like NSLog() which accepts variable arguments. Code below causes parse issues.
What is the correct way to define this?
#define TF_CHECKPOINT(f, ...) \
do { \
...
0
votes
2answers
188 views
How to i convert a method to a MACRO in objective C
I have this method which basically adds the letters to the contents in an array (demonstration)
- (NSMutableArray *) addTheLetterZ:(NSArray *)array {
NSMutableArray *addedLetterArray = ...
0
votes
1answer
207 views
Objective-C macros - calling a singleton object's method
I'm working with a singleton object/class, and need to call one of its methods frequently, and from many places in a large project. I need define a macro to handle this, but it's not working at the ...
1
vote
4answers
698 views
ABS(A) and abs(int)
I am baffled in the difference of this two in xcode, ABS(A) and abs(int). Cant seem to find ay explanation online as well. Which should I use? I am actually working on an accelerometer. Using ABS(A) ...
2
votes
4answers
332 views
Proper use of macro #define on iPhone/iPad
I have been reading conflicting information about the use of #define macros in iOS and whether they are running only on compile time or also at run time.
Consider my case: i would like to define a ...
2
votes
2answers
143 views
C macro to expose property of ivar in objective-c
In my project, I usually have a composite object (GameObject) that needs to expose a few properties of an ivar into the GameObject's interface. For example, a GameObject has a Sprite with a 'position' ...
2
votes
1answer
651 views
Storing an iOS Application Constant in Objective-C
I have a few unicode characters (musical flat and sharp symbols) that I currently have defined in a class:
#import <Foundation/Foundation.h>
#define kSongsSharpSymbol [NSString ...
0
votes
2answers
139 views
Is this a good way to use macros?
I'm aware of the pitfalls of macros and avoid them when what I really want is a function.
What I've found them helpful for, though, is storing things like "magic" numbers, file names, font names and ...
2
votes
1answer
243 views
Where is the DEBUG macro defined?
When I run code such as the following:
- (void)viewDidLoad
{
#ifdef DEBUG
NSLog(@"debug");
#else
NSLog(@"here");
#endif
[super viewDidLoad];
}
I see "debug" printed in the log, but I ...





