Pictures from iPhone to clients FTP server – Directly (iPhone->FTP) or Cloud (iPhone->Amazon->FTP)
My clients wants to take pictures with their iPhone’s and place them collectible on their server, suggested by FTP.
How to avoid huge functions with made up of enums and if-else or switch case when dealing with server response in iOS?
in my application,
I have a request type associated with variety of API calls I make to the REST server.
when the response from server comes in the same delegate method for web engine’s response,
Preventing override of methods in Objective-C [closed]
It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago. Objective-C lacks private methods or java-esque final methods. […]
Core data syncing (deletion) using a custom REST web service
I need to sync my local core data stack against a server running a persistent data storage underneath the covers. (I’ve gone through other posts here and on SO on similar topics)
Can Objective C categories serve the same purpose as Traits do in Scala?
The statement of the question seems little abstract to me, so please read the details below.
C++ vs Objective-C design principles of setters and getters
In C++ I was told that my classes shouldn’t have getters and setters: Doing it wrong… blog post.
Why is “working with files” is an important subject when learning Objective C?
I’m reading a book on Objective C, and I was wondering how important the subject Working with files for learning to develop iOS in particular?
Should I read a chapter about Memory management if now a days we mostly use ARC?
I’m reading a book on Objective C, and I was wondering about 2 things:
Is object-oriented conceptual thinking something you build with experience? [closed]
It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago. I know that the answer is pretty clear […]
Program Structure for Table Cells Representing Objects
So I have a program with “cue” objects and each have their own table cell. The thing is that the table cells have loading bars on them that represent the progress of the cues. This presents the following question: How should I structure the program?