3
votes
2answers
34 views

Bundle declarations into one statement or not?

Given the following Objective-C example, is it simply a matter of style and ease of reading to keep separate statements or to bundle them into one? Are there any actual benefits of either? Is it a ...
1
vote
1answer
51 views

Naming conventions for parameters in Objective-C

When naming parameters in Objective-C, does it matter -that is, it is advisable for documentation / legibility - if I use the same name for similar methods? For example: @interface Zookeeper : ...
0
votes
2answers
22 views

NSError objects with NSFetchedResultsControllers

This is a simple one: I'm currently creating a new NSError object every time I perform a fetch on my NSFetchedResultsController. This occurs across a number of methods, so there are currently nine of ...
2
votes
2answers
89 views

Coding convention for space after pointer * [duplicate]

In Cocoa, what's the best convention on writing the * for pointer? @property (nonatomic, retain) MyClass * instance; or @property (nonatomic, retain) MyClass *instance; I noticed that the ...
2
votes
2answers
156 views

Wich pattern to update interface using background thread?

I'm looking for a common and elegant way to manage interfaces update. I know that user interface code must be run in main thread, so when i need some computation o network task i use GDC with this ...
0
votes
3answers
74 views

Are C functions bad style in Objective-C interfaces?

I declare an interface with some functions and some methods. Instead of declaring: -(void)foo; +(void)bar; I declare: -(void)foo; void bar(); I think it's fine. The compiler thinks it's fine. Do ...
0
votes
4answers
91 views

if statements, a faster way?

I know this can be faster but i dont have years of experience in coding so i am just learning the hard way.. I made a function that checks if a string is not "" if not add it to a nsurl and then i ...
0
votes
1answer
56 views

Abstraction of Model objects reasonable?

I'm currently working on a project where I'm adding a new rest interface. I've written a generic converter which converts the response into some objects. Now i'm asking myself if I should convert ...
4
votes
1answer
164 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, ...
0
votes
2answers
92 views

Objective-c coding

I'm really confused about using proprieties. if i declare this @property (nonatomic, strong) NSString* aString; what is the difference between this 1.@synthesize aString = _aString and ...
3
votes
1answer
94 views

Is there any benefit to condensed code?

Let's say I have a statement which is several lines long: NSString *urlString = @"http://www.example.com"; NSURL *url = [NSURL urlWithString:urlString]; ASIFormDataRequest *request = ...
6
votes
2answers
88 views

Class method and instance method with the same name in Objective-C

I have a solution for a notification problem which works well, but I'm afraid might be a bad idea. I have a notification that needs to be handled by each instance of a class and by the class itself. ...
0
votes
2answers
111 views

Objective-c coding convention?

In objective-c,can i declare a UI variable with type?: UIButton *btn_Add,*btn_showMessage or UILabel *lb_Title How about: UIButton *btnAdd,*btnShowMessage or *lbTitle Thanks so much
-1
votes
2answers
191 views

Should ivars and properties be declared in the header or the implementation file?

I want to know which of these is considered "best practice" for iOS development: Declare all ivars and properties inside the .h file, so that anyone can understand the structure of the class. ...
0
votes
1answer
771 views

Defining instance variables in Objective-C

As Objective-C has evolved (I use it exclusively with xcode/ios for iPhone/iPad development), there seems to be many different ways you can layout your class instance variables. Is there a 'best ...
0
votes
2answers
271 views

Declaring method prototypes in header and implementation

I am learning object orientated programming from the online Stanford courses there is a part I am unsure of regarding declarations. I thought that you must always declare the prototype in the header ...
5
votes
2answers
202 views

Is there any advantage on separating iPhone and iPad classes on a Universal app?

I have a Universal (for both iPhone and iPad) application. Are there any advantages on separating the iPad from the iPhone classes in the folder structure? Here is an example of what I mean: - ...
0
votes
1answer
53 views

How do I handle a button tap according to Clean Code principles?

I have the following, seemingly simple piece of code handling button taps in an iOS application: - (IBAction)tapKeypadButton:(UIButton *)sender { NSString *buttonLabel = sender.titleLabel.text; ...
1
vote
1answer
120 views

Best practice when using similar code in methods

I have a Utility method to comunicate with an API, it communicates using a POST HTTP request, in my utility-class i have a method called: ...
3
votes
2answers
143 views

Why can't a designated initializer call a secondary initializer in its base class?

According to the documentation, a class's designated initializer in Objective-C must call the designated initializer of its base class. Another rule is that secondary initializers must call the ...
1
vote
2answers
454 views

Standards for comments in NSLocalizedString

How do people write their comments for their NSLocalizedStrings? Is there a standard guideline that we should follow? For example if I have: NSLocalizedString(@"Tap your account to sign in", @""); ...
0
votes
4answers
77 views

Naming conventions for instances and methods

What is the standard way to name an instance: NSString* myString; or NSString* my_string; Similarly, what is the standard way to name a method: (void) getMyName; or (void) get_my_name;
1
vote
3answers
478 views

Are deeply nested if statements considered good form? [closed]

In my adventures of writing Mac software with Objective-C and Cocoa, I've learned quite a lot. There is still much for me to learn, but I've greatly improved in the past few months and have advanced ...
5
votes
4answers
870 views

Open Source iOS projects for learning best coding practices

I have some experience in iOS development (more Java background) and recently I've started to read "Clean Code". I've noticed that in my iOS projects I have a lot of anti-patterns. 2 most popular ...
6
votes
6answers
519 views

Objective-C class naming convention vs Uncle Bob

In Chapter 2: Meaningful Names Uncle Bob writes: Don't Add Gratuitous Context In an imaginary application called "Gas Station Deluxe," it is bad idea to prefix every class with GDS. Frankly, ...
2
votes
2answers
142 views

I need to think like a programmer: Childs and Parents in Cocos2d, program structure, enums etc

I'm a completely self-taught Objective-C programmer, and I need advice on how to best structure a project that I'm working on. I'm dealing with CCSprite's, .tags, and some general program structure ...
1
vote
2answers
86 views

Does setting the text of a simple text label go against MVC?

In MVC the View shouldn't hold it's data. However I know in Objective-c you do: [textField setString:@"hello"];, that string is then retained by the text field. The same applies for the textField's ...
1
vote
2answers
133 views

Looking for good guidelines on how to manage code for large UIViewController classes

I've been working on my first XCode/iOS project and so far it's been an enjoyable experience. Currently, I am working on a Nib file that acts as a primary display for other views. Within this Nib ...
4
votes
5answers
353 views

_iVar vs. iVar_ for variable naming [closed]

I used to use prefix underscore for instance variable naming, to distinguish from local variables. I happend to see the "Google Objective-C Style Guide", and found that it suggests to use trailing ...
8
votes
2answers
275 views

Best Practice: Partial Regex Matching

I'm not sure that regexes are the best solution here, but they seem logical enough; I'm just not sure how to actually implement this. Basically, I want my user to be able to type in a method name and ...
1
vote
1answer
64 views

Cocoa way of doing applications with delegates

i have a method, in which i want to accomplish a given task, however, the asynchronous commands and delegates made it difficult i can do this : - (void) fooPart1 { ... ...
1
vote
1answer
142 views

Set a TTImageView as background on a TTView

Im having troubles to set a imagebackground on a TTView. Here is the code i found on internet, but it only shows a black square. - (TTView *) monthBar { if (!_monthBar) { _monthBar = [[[TTView ...
0
votes
2answers
50 views

is it right way in obj-c programming

i wonder if the way i programm is right way or not. can you help me? @interface ViewController : UIViewController { UILabel *messageLabel; } @end when i declare new object in .h and create in ...
0
votes
1answer
58 views

Is usage on objc 'iskKindOfClass:' an indication of bad design?

Is the objective-c 'isKindOfClass:'/'isMemberOfClass:' methods considered as ugly as the java 'instanceof'?
0
votes
3answers
94 views

Using #define to create styles

I am wondering if I can use a series of #DEFINE to create style options for my app. For example, #DEFINE style1: backGroundColor = [UIColor: colorNamed whiteColor]; txtColor = [UIColor blackColor]; ...
1
vote
5answers
949 views

@synthesize ivarName = _ivarName convention, preference or performance? [duplicate]

Possible Duplicate: Synthesized property and variable with underscore prefix: what does this mean? The usage of Objective-C properties has always felt awkward to me. It's one of the "I know ...
0
votes
1answer
187 views

UINavigationController raise the view by 20 points permanently, preserve UINavigatinBar transparency

I have a UINavigationController and a UITabBar within my app. The UINavigationController has a translucent black navigation bar as follows: in the app delegate: [[UINavigationBar appearance] ...
0
votes
2answers
37 views

In what order should class elements be declared in header file?

I wonder, from both convention and experience stand point, in what order should class elements be declared? For instance class methods instance methods properties something else What order is ...
5
votes
3answers
285 views

Stateless static methods vs. C functions in Objective-C

In terms of good Objective-C coding practices, if I create a function that has no state, is it better to write it as a static method of some class or as a C function? For example, I have a special ...
0
votes
1answer
102 views

Is this -init method style still used?

I just stumbled this code here on Stack Overflow: -(id) init { if (self = [super init]) { //... Some code ... } return self; } Upon asking why we use this, and after searching ...
0
votes
2answers
41 views

OOP: Coupling the setting of a state with the showing of it?

Say I have an class which has three states: full screen, windowed, and minimized. The state of my object is stored as an enumerated type, typedef enum { StateFullScreen, StateWindowed, ...
14
votes
1answer
1k views

Disadvantages of Objective-C++? [closed]

I'm writing a large project for iOS in Objective-C++. I'm mainly using Objective-C for the UI and other Apple APIs, and C++ for internal audio processing and other information handling. I was ...
3
votes
2answers
657 views

Put delegate methods into a category

I developed some application 'till now. Now I'm writing a new one and in this project I want to keep the code very clean, so it's very easy to find the methods. I want to start with the ...
0
votes
2answers
48 views

Seperation of data in different classes

What are the best practices for separating data in different classes? Not just objective c, but programming in general. For example, if someone was making a game like angry birds, how one manage ...
1
vote
4answers
437 views

How to format objective-c source code for better readability

Each one have its own method for commenting its code. For my own, I have made it evolved from project to project. In your experience, how do you efficiently comment your .h and .m code and name your ...
1
vote
2answers
115 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
5answers
185 views

What to do with useless init?

This is currently what I have for my init, - (id)init { self = [super init]; if (self) { self.url = [[NSURL alloc] init]; self.blurb = [[NSString alloc] init]; ...
0
votes
2answers
311 views

Can boolean properties' accessors be synthesized according to the coding guidelines (ex: isEnabled getter)?

I've read the Coding Guidelines for Cocoa for accessor methods and it invites you to write getter methods for instance variables expressed as adjective (ex: enabled) as isEnabled instead of simply ...
0
votes
1answer
135 views

How to correctly return callbacks from C++ engine to obj-c program?

First the situation: There is C++ written engine implemented in Objective C program. iPhone xcode to be precise. It uses OpenGL to draw everything. It has "renderFrame" method that is called every ...
0
votes
1answer
65 views

What are the coding-styles for grouping declarations of properties and corresponding synthesize calls? [closed]

I'm still learning, so I don't have my working convention yet for grouping my properties in header files, and the same is about synthesize calls. Sometimes I group them in one order, sometimes in ...

1 2 3