Tagged Questions
621
votes
6answers
128k views
How to “add existing frameworks” in Xcode 4?
I can't find the good old "Add existing frameworks" option. How do I do this?
We're talking about Xcode 4 DP2 (in the context of iPhone development, as far as it matters...).
338
votes
89answers
128k views
Hidden Features of Xcode
With a huge influx of newbies to Xcode, I'm sure there are lots of Xcode tips and tricks to be shared.
What are yours?
310
votes
32answers
52k views
What are best practices that you use when writing Objective-C and Cocoa?
I know about the HIG (which is quite handy!), but what programming practices do you use when writing Objective-C, and more specifically when using Cocoa (or CocoaTouch).
279
votes
32answers
66k views
How-to articles for iPhone development and Objective-C
I am looking for an introduction into developing for the iPhone. Any recommendation? I do not speak Objective-C either, so tutorials on that would not hurt either.
270
votes
10answers
414k views
How much does it cost to develop an iPhone application? [closed]
How much can a developer charge for an iPhone app like Twitterrific?
I want to know this because I need such an application with the same functionality for a new community website. I can do Ruby but ...
238
votes
7answers
93k views
Atomic vs nonatomic properties
What do atomic and nonatomic mean in property declarations?
@property(nonatomic, retain) UITextField *userName;
@property(atomic, retain) UITextField *userName;
@property(retain) UITextField ...
237
votes
7answers
60k views
UIImagePickerController, UIImage, Memory and More? [closed]
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is ...
230
votes
25answers
117k views
Graphical diff for Mac OS X
Where can I find a convenient graphical diff-tool for Mac OS X (freeware)?
224
votes
10answers
72k views
@class vs. #import
It is to my understanding that one should use a forward-class declaration in the event ClassA needs to include a ClassB header, and ClassB needs to include a ClassA header to avoid any circular ...
214
votes
14answers
83k views
Comparison between Corona, Phonegap, Titanium [closed]
I am a web developer and I want to move my web products to iPhone. One of the products is like Google Maps: show map on the phone screen, you can drag or resize the map and view some information that ...
206
votes
19answers
60k views
How do I vertically align text within a UILabel?
I have an UILabel with two lines. Sometimes, when the text is short enough, this text is displayed in the vertical center of the UILabel.
How do I vertically align my text at the top of the UILabel?
...
200
votes
2answers
96k views
What is a typedef enum in Objective C?
I don't think I fundamentally understand what a enum is, and when to use it.
For example:
typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;
What is really being ...
194
votes
34answers
169k views
Best subversion client for Mac OS [closed]
On Windows, Tortoise SVN is the daddy, no question. On the Mac there is nothing as simple and integrated, but there is a fair choice of tools. Which GUI clients are worth checking out and why?
186
votes
24answers
26k views
Open source iOS components? Reusable views, controllers, buttons, table cells, etc?
Are there any repositories around for open sourced iPhone and iPad components?
For instance, I have found myself needing to create several new types of table cells to mimic some of Apple's existing ...
185
votes
3answers
33k views
How do I setup NSZombieEnabled in Xcode 4?
How do I set up NSZombieEnabled and CFZombieLevel for my executable in Xcode 4?
176
votes
7answers
16k views
What are your experiences selling on the Android Market? [closed]
I've been hearing some good things about Google's Android Market recently, and I might look into developing for android (currently develop for iPhone OS) at some point. Are any of you Android ...
175
votes
23answers
81k views
What does your Objective-C singleton look like?
My singleton accessor method is merely:
static MyClass *gInstance = NULL;
+ (MyClass *)instance
{
@synchronized(self)
{
if (gInstance == NULL)
gInstance = [[self alloc] ...
164
votes
10answers
99k 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, ...
162
votes
11answers
75k views
How to check for an active Internet Connection on iPhone SDK?
I would like to check to see if I have an Internet connection on the iPhone using the Cocoa Touch libraries.
I came up with a way to do this using an NSUrl. The way I did it seems a bit unreliable ...
161
votes
7answers
42k views
Warning iPhone apps should include an armv6 architecture even with build config set
It's been awhile since I've had to adjust project build settings. After upgrading to a recent SDK I'm having trouble building my ad hoc distribution configuration.
Build generates this warning and ...
157
votes
16answers
74k views
Can I embed a custom font in an iPhone application?
I would like to have an app include a custom font for rendering text, load it, and then use it with standard UIKit elements like UILabel. Is this possible?
I found these links:
...
155
votes
43answers
257k views
iPhone development on Windows
Is there a way to develop iPhone (iOS) applications on Windows? I really don't want to get yet another machine.
There is a project on http://code.google.com/p/winchain/wiki/HowToUse that seemed to ...
154
votes
9answers
40k views
Git ignore file for Xcode projects
Which files should I include in .gitignore when using Git in conjunction with Xcode?
153
votes
6answers
113k views
Generating Random Numbers in Objective-C
I'm a java head mainly, and I want a way to generate a pseudo-random number between 0 and 74. In java I would use the method:
Random.nextInt(74)
I'm not interested in a discussion about seeds or ...
147
votes
10answers
163k views
How do I concatenate strings in Objective-C?
Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C or shortcuts for working with NSString or other objects in general?
For example, I'd like to make
NSString ...
147
votes
14answers
23k views
What is the best way to unit test Objective-C code?
What frameworks exist to unit test Objective-C code? I would like a framework that integrates nicely with Xcode.
142
votes
23answers
65k views
iPhone - strange error when testing on simulator
I was testing my app on the simulator when it crashed on clicking a button of a UIAlertView. I stopped debugging there, made some changes to the code and built the app again. Now when I run the ...
142
votes
20answers
119k views
Best visual client for Git on Mac OS X? [closed]
I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?
141
votes
16answers
11k views
Is MonoTouch worth the cost or should I just learn Objective-C?
After sitting through a session today on Mono at a local .Net event, the use of MonoTouch was 'touched' upon as an alternative for iPhone development. Being very comfortable in C# and .Net, it seems ...
139
votes
18answers
101k views
Starting iPhone app development in Linux?
I've heard that you need to get a Mac if you want to develop iPhone apps. Is this true?
Is it possible to develop iPhone apps using Linux? If yes, what do I need and where do I download the ...
138
votes
6answers
87k views
How do you beta test an iphone app?
How can you beta test an iPhone app? I can get it on my own device, and anyone that gives me a device, I can run it on theirs, but is there a way to do a limited release via the app store for beta ...
134
votes
2answers
24k views
131
votes
24answers
31k views
Tips for a successful AppStore submission? [closed]
In a day or two I'll be ready to submit my iPhone app to the AppStore and I'm curious whether people who have gone through this process have any tips / suggestions for a smooth submission process.
...
130
votes
22answers
8k views
Is MonoTouch now banned on the iPhone?
Does this in fact ban the use of Monotouch for the IPhone?
EDIT UPDATE: As of iOS v4.1's release, this section was REMOVED from the iPhone terms, and MonoTouch is now totally, 100% allowed. Of ...
129
votes
24answers
87k views
What is the best Git GUI on OSX? [closed]
What is the best GUI on OSX for viewing a Git repository, and (optionally) manipulating it?
127
votes
13answers
94k views
Setting environment variables in OS X?
What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit:
/etc/paths
~/.profile
~/.tcshrc
I don't even have ...
126
votes
16answers
51k views
Open terminal here in Mac OS finder
Is there something similar to the "Open Command Window Here" Windows Powertoy for Mac OS? I've found a couple plugins through a google search but wanted to see what works best for developers out ...
125
votes
6answers
51k views
How can I disable the UITableView selection highlighting?
When you tap a row in a UITableView, the row is highlighted and selected. Is it possible to disable this so tapping a row does nothing?
120
votes
30answers
120k views
iPhone app signing: A valid signing identity matching this profile could not be found in your keychain
I'm pulling my hair out over this. I just downloaded the iPhone 3.0 SDK, but now I can't get my provisioning profiles to work. Here is what I have tried:
Delete all provisioning profiles
Delete ...
117
votes
3answers
34k views
Fast and Lean PDF Viewer for iPhone / iPad / iOs - tips and hints?
There has been many Questions recently about drawing PDF's.
Yes, you can render PDF's very easily with a UIWebView but this cant give the performance and functionality that you would expect from a ...
114
votes
8answers
31k views
Codesign error: Provisioning profile cannot be found after deleting expired profile
Tried to rebuild an app that was just working yesterday. Got a message that a profile had expired, so I removed it from the iPod and from Itunes. When I chose a new profile (one with an * in the ...
113
votes
16answers
83k views
How to change the name of an iPhone app?
I began an iPhone project the other day with a silly development code name, and now I want to change the name of the project since its nearly finished.
But I'm not sure how to do this with Xcode, ...
112
votes
9answers
43k views
Best way to define private methods for a class in Objective-C
I just started programming Objective-C and, having a background in Java, wonder how people writing Objective-C programs deal with private methods.
I understand there may be several conventions and ...
111
votes
23answers
16k views
Hidden Features of Xcode 4
Now that Xcode 4 is officially released it's time for a follow up to my previous question: Hidden Features of Xcode
So what are they? What are those hidden little Xcode 4 hints & tips that you ...
110
votes
9answers
76k views
How to programmatically send SMS on the iPhone?
Does anybody know if it's possible, and how, to programmatically send a SMS from the iPhone, with the official SDK / Cocoa Touch?
108
votes
23answers
163k views
How can I develop for iPhone using a Windows development machine?
Is there any way to tinker with the iPhone SDK on a Windows machine? Are there plans for an iPhone SDK version for Windows?
The only other way I can think of doing this is to run a Mac VM image on a ...
107
votes
9answers
27k views
Xcode “Build and Archive” from command line
Xcode 3.2 provides an awesome new feature under the Build menu, "Build and Archive" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the Organizer, go to "Archived ...
106
votes
3answers
39k views
NSString property: copy or retain?
Let's say I have a class called SomeClass with a string property name:
@interface SomeClass : NSObject
{
NSString* name;
}
@property (nonatomic, retain) NSString* name;
@end
I understand that ...
103
votes
9answers
37k views
NSLog tips and tricks [closed]
I'm doing a presentation on debugging in Xcode and would like to get more information on using NSLog efficiently. I'd like to know if there are any tips and tricks to using NSLog which you guys have ...
103
votes
10answers
66k views
iPhone App Minus App Store?
I've been looking into iPhone development, but I've been having problems coming up with the answer to a certain question.
If I create an application on my Mac, is there any way I can get it to run on ...