Tagged Questions
-4
votes
2answers
58 views
I Know Objective C, but not how to make Apps [closed]
I have gone through a course on programming Objective C, but I want to begin App Development for iOS. The only issue is that I do not know where to begin learning the necessary skills required to ...
1
vote
1answer
146 views
Why is it impossible for Google to port V8 along with Chrome's codebase in C/Obj-C on iOS?
Google has given a reason that All apps on iOS have to run in the sandbox environment except for special apps by apple that get to tap into some private APIs.
So Chrome on iOS uses whatever the ...
1
vote
1answer
50 views
How to implement a Theme for View Controllers in an iOS app?
I have an application, where font size, font type, color, background color, image and a lot of things change based on theme.
I realised in the beginning itself that using enums to denote themes and ...
3
votes
3answers
439 views
Why did Apple choose to design its programming language with future and past tense method names?
There are a lot of methods like this in iOS/Objective C:
- viewDidLoad
- viewWillAppear:
- applicationDidFinishLaunching
I've just been having a discussion with some colleagues about this design ...
-6
votes
1answer
90 views
What is the best and most efficient structure of a typical iOS Application [closed]
I have dived into developing for iPhone/iPad lately. And while developing on XCode, I feel like My classes interfaces..etc is messy and I am running into that because I may have not given enough time ...
0
votes
1answer
42 views
Putting a TableView on a ViewController [closed]
I am having trouble figuring out the best way to display my model for my iOS 6 app.
My model has a few properties and a to-many relationship with another object. I want to display the properties ...
1
vote
1answer
127 views
Implement a file system for ios devices
I've read that ios apps can communicate via unique urls. An online tutorial on tutsplus
says
Communication between apps provides your application with an opportunity to take advantage of other ...
-4
votes
1answer
107 views
upload pdf via iOS app [closed]
I have a web-service that transforms an uploaded pdf into a flipping-book. I wan't to create an iOS app that allows the user to upload their pdf and recieve the flipping-book. What possibilities are ...
0
votes
1answer
37 views
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 ...
0
votes
1answer
221 views
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.
I can see there is two solutions:
Directly upload from the iPhone to the FTP ...
4
votes
2answers
439 views
What patterns book for iOS development contains this specific information? [closed]
I've read several books on iOS development and Objective-C, however what a lot of them teach is how to work with interfaces and all contain the model inside the view controller, i.e. a ...
3
votes
4answers
197 views
Strategy for avoiding duplicate object ids for data shared across devices using iCloud
I have a data intensive iOS app that is not using CoreData nor does it support iCloud synching (yet). All of my objects are created with unique keys. I use a simple long long initialized with the ...
-2
votes
2answers
493 views
What are some good open source iOS components & libraries? [closed]
simply, would you suggest good sources of open source libraries/components for iOS Objective C projects?
I've found a few but it seems they are somewhat elusive and spartan compared with other ...
4
votes
2answers
492 views
Design pattern and best practices [closed]
I am an iPhone developer. I am quite confident on developing iPhone application with some minimal feature. I would consider myself as a fair application developer but the code I write is not so much ...
5
votes
2answers
188 views
Data structures for storing finger/stylus movements in drawing application?
I have a general question about creating a drawing application, the language could be C++ or ObjectiveC with OpenGL.
I would like to hear what are the best methods and practices for storing strokes ...
5
votes
2answers
1k views
WWDC 2012 announced features on iOS 5?
I am relatively new to iOS development, so after watching a bunch of WWDC videos announcing new awesome features for the iPhone SDK, I still got a few questions regarding their support for older ...
3
votes
2answers
2k views
IOS Variable vs Property
Just started diving into Objective-C and IOS development and was wondering when and the correct location I should be declaring variables/properties. The main piece of code i need explaining is below:
...
5
votes
2answers
1k views
Organizing code for iOS app development
I've been developing an app for the iOS platform, and as I've been going along, I've noticed that I've done a terrible job of keeping my files (.h, .m, .mm) organized. Is there any industry standards ...
0
votes
1answer
435 views
Best way to update UI when dealing with data synchronization
I'm working on a bug at work. The app is written in Objective-C for iOS based device, for the iPad. I'm the new guy there and I've been given a hard task. Sometimes, the UIButton text property does ...
3
votes
7answers
731 views
Design patterns: moving object references around an application
I'm new to Programmers and I am looking to increase my knowledge of programming. Recently, a user on Stack Overflow told me using singletons is a bad idea, that they encourage tight coupling and that ...
7
votes
4answers
799 views
Where does Objective-C come from? C++ or C?
I am very confused about this programming language, Objective-C, which I heard is used to develop iOS applications.
I know that it uses the principles of OOP. Would it be easier to learn if I already ...
1
vote
2answers
1k views
Is this a proper implementation of an iOS MVC pattern?
After browsing the apple docs, I came across this sample of their MVC pattern:
Using NSNotificationCenter and without using KVO, would this diagram below represent a correct implementation of the ...
1
vote
2answers
3k views
Sample and Best tutorial for unit tests using OCMock in iphone sdk
I am new to the unit testing and using of OCMock in iPhone applications. I had read some documents too but it is hard to understand. Are there any other tutorials which are easy to understand and ...
4
votes
1answer
467 views
New to iPhone Development - iOS5 Storyboard
I'm new here and pretty new to iOS development. My question is basically, should I learn the old school development methods or just learn how to do things using the latest tools (i.e. Storyboard)?
...
6
votes
3answers
5k views
Is it better to target iOS 5 and ARC or an earlier version with MRC?
I personally don't know much about iOS 5, but it seems like with automatic reference counting (ARC), you get rid of much of the memory management issues of the previous operating systems.
So is it ...
2
votes
6answers
1k views
Is Big Nerd Ranch or AboutObjects iOS training worth it? [closed]
I have a CS undergrad degree and have been programming for several years with my current company, messed around with Objective-C by making a few console apps and a few simple apps that I ran in the ...
4
votes
4answers
573 views
Best practices for upgrading user data when updating versions of software
In my code I check the current version of the software on launch and compare it to the version stored in the user's data file(s). If the version is newer, then I call different methods to update the ...
3
votes
1answer
795 views
When should I use static variables with primitive types?
Recently I came across the question NSString: Why use static over literal? and in the comments arrived a new question.
In Objective-C there some "special" types that are just maps to C primitives. ...
4
votes
3answers
4k views
As an iOS developer, what type of technical interview questions should you be prepared with?
I just finished a technical interview yesterday and the interviewer asked about graph theory, data structure, and traversals. This has nothing to do with iOS stuff. So I came un-prepared. This was ...
5
votes
1answer
515 views
How can I manage my ViewControllers in my game?
I'm building a very simple iOS game that doesn't require any fancy OpenGL; I'd like to stick with Core Graphics & Core Animation. I'd like to make this a fullscreen game, and my question is of ...
4
votes
7answers
466 views
iPhone development options for the [from-my-cold-dead-hands] C developer
Please forgive the humor of the title but it certainly gets my point across. I am quite familiar with C code, I can write it in my sleep and after reading through a few tutorials on iPhone ...
1
vote
1answer
460 views
Views, View Controllers, Properties and Object-Oriented Programming
I'm new to OOP, having been a procedural programmer for many years. I'm learning iOS development in Objective-C and could use some clarity on when and how objects and properties are used.
Say I have ...
5
votes
3answers
463 views
Building iOS Applications using MonoTouch
I am planning to learn objective-c to be able to build iOS Applications I have seen some guys using Monotouch sdk, I am really confused where to start from.
I have a solid experience in Developing ...
3
votes
2answers
408 views
Better to use one large plist or many small plists when developing for iOS?
I'm creating a simple "find one of our locations" app for iOS 4, for which I have a list of >70 places, complete with addresses, business hours, etc. Is it better to put all of this data in one large ...
3
votes
2answers
3k views
Would knowing Python help with creating iPhone applications?
Here is what the apple site says:
With Snow Leopard, Mac OS X makes it
easy to use scripting languages as
full application development tools.
Snow Leopard ships with support for
the ...
