Search Results

1
vote

CPAN/gem-like repository for Objective-C and Cocoa?

I'd be interested in what kind of "basic functions" you're having to implement. There's actually quite a lot already there in the provided libraries, and I wonder if you're just not finding functio …
0
votes

What is a better way to create a game loop on the iPhone other than using NSTimer?

Have you looked at the iPhone developer examples? I think there are some examples (Touch Fighter or CrashLanding, for example) that might be illuminating. …
3
votes

Carbon vs Cocoa, is Carbon a dead end with OS X?

There are a few compelling reasons to use Carbon, but for most new code, using Cocoa will be less work overall (even including learning Objective-C). Unless you've got existing Carbon code, or you' …
0
votes

What’s the nicest way to do observer/observable in objective-c (iphone version)

That's not generally the way that it's done. Take a look at the discussion here, …
3
votes

Learn C first before learning Objective-C

There are a lot of things you can't do purely in Objective-C, so learning some basic C skills will be pretty critical. You'll at least need to understand variable declarations and the basic C libra …
6
votes

What is the underlying mechanism for ivar synthesis in the modern Objective C runtime

I went and looked at the documentation again just now, and I think you're misreading it. Synthesized ivars are created at compile time, not at run time. According to the …
0
votes

How do I record and play back sound on the iPhone?

The obvious solution would be to save the sequence of user actions in an NSArray, and play them back to recreate the sounds. I'm not sure that you can record the output sound channel into another f …
1
vote

UITableView weirdness! with pictures.

Hard to tell without looking at all the code, but is it possible that you're not recycling your tableview cells properly? You have to assign a different reuseIdentifier for each cell that's rendere …
0
votes

iPhone Bug App bug Question and challenge..

Most likely, you're failing to retain some object somewhere along the way. When an object gets released and then the memory is re-used for something else, you'll get all sorts of bad behavior, incl …
1
vote

Receiver ‘ClassName’ is a forward class and corresponding @interface may not exist

I don't think that you can suppress that warning with a compiler option. You could make it go away by simply creating your own header file for the class, containing: @interface FacesViewCon …
0
votes

Does adding many many subviews to a viewcontrollers default view make my app slow?

Don't forget to make as many of your views opaque as you can. Transparent views are a major source of performance issues. …
2
votes

How to “blend/merge” two images usingi an objective-c library?

Alpha blending is directly supported by the Quartz graphics engine, so you don't need any additional libraries. You just draw one image, then draw the second image with an alpha of less than 1.0 on …
1
vote

iphone developing

As others have commented the "before" in the error message indicates that there's probably nothing wrong with the posted line. More likely the problem is on a previous line, or in an included head …
2
votes

iPhone application is crashing and not leaving behind a .crash log file

A couple of suggestions: Make sure that you're not actually calling exit(), returning from main(), or otherwise cleanly exiting anywhere in your code. If your application is just …
0
votes

No Data Returned Using NSURLConnection Asynchronously

Nothing obviously wrong up there. I have code that's substantially the same and works fine. The only differences I see are: I use NSURLRequestUseProtocolCachePolicy instead of NSUR …

1 2 3 4 next
15 30 50 per page