1
vote
2answers
51 views
Simplifying switch statement (Objective-C)
Y'hello.. Yep, it's me again, sorry.
I am trying to .. um, see the code, you'll understand. If not, I'll explain later.
// When row is selected
- (void)pickerView:(UIPickerView *)pickerTimer …
2
votes
7answers
32 views
Waiting for a specified duration in Cocoa
Is there a more straightforward way to wait for a specific amount of time in Cocoa than what I have come up with below?
- (void) buttonPressed {
[self makeSomeChanges];
// give the user some …
0
votes
1answer
11 views
NSObjectController confusion binding to a class property. Help!
Hi,
I'm teaching myself cocoa and enjoying the experience most of the time. I have been struggling all day with a simple problem that google has let me down on. I have read the Cocoa Bindings Program …
1
vote
1answer
21 views
Does anyone have any experience using libraries to generate HTML from Objective C on the iPhone?
I need to generate some html from within an iPhone application. Do you have any recommendations on templating libraries to use? A simple Google search is turning up surprisingly empty.
0
votes
2answers
22 views
create multiple variables based on an int count
I tried googling this but I am not really sure what I'm searching for...
In objective-c how would I create the same number of NSDictionary objects as is array.count?
I would want to autorelease the …
1
vote
2answers
20 views
I have a CoreData model with 4 entities multiple table
I have a CoreData model with 4 entities.
Model screenshot -> http://img96.imageshack.us/img96/7857/screenshot20100209at182.png
State
-StateName
Location:
-locationName (attribute)
…
0
votes
2answers
30 views
Find words between 2 words?
Using Objective-C on my iPhone, is there a built-in method for NSString that finds a string appearing BETWEEN 2 other stings?
Search "my dog is my cat's best friend"... and return everything between …
1
vote
3answers
59 views
Simple array loop question Objective-C
How can you make this work?
numbers = [[NSMutableArray alloc] initWithObjects: ({int x = 0; while (x <= 60 ) { return x; x++; } })];
Thanks :)
0
votes
2answers
15 views
select part of image (clipping)
This is probably not as hard as I think it is, but how can I select part of an image? Consider the following example:
The grey area is an image in the PNG or JPG Format, now I want to select the …
0
votes
2answers
26 views
Memory Management for shared array elements
I am a little confused about releasing memory for array elements that are shared by multiple arrays. Here's the scenario:
Manager class has an instance variable NSMutableArray* mgrArray
Helper …
0
votes
2answers
19 views
How to delay while retaining a responsive GUI on Cocoa Touch?
Basically, I have an array of buttons I want to iterate and highlight (among other things) one after another, with a delay in-between. Seems like an easy task, but I can't seem to manage to get it to …
0
votes
1answer
20 views
Return array value as NSString
How can you return an array value (witch is a number) as a string?
Current code:
return [numbers objectAtIndex:row];
Have also tried:
return @"%@", [numbers objectAtIndex:row];
With no luck..
…
3
votes
1answer
42 views
Multiple statements in a loop with if else
EDIT: Updated code to better reflect my problem
this code returns 9 strings to badDestination1
NSMutableArray* goodDestination1 = [NSMutableArray array];
NSMutableArray* badDestination1 = …
0
votes
0answers
12 views
Is it possible to set the contents of a CALayer from a CGLayer in iPhone SDK?
For a custom UIView I've implemented, I want to display some graphics in multiple CALayers that are added as subviews of my UIViews layer.
I cannot use my UIView as the delegate for the sublayers. A …
1
vote
1answer
19 views
Getting a Cocoa/Objective-C callback from Google Maps with WebView
Hi, all.
I'm working on a new feature for my Mac application and it has to do with maps. As an example, let's use iPhoto's "Places".
iPhoto uses Google Maps to show the location of various photos …
