Search Results

1
vote
1answer
298 views

How do I convert RGB into HSV in Cocoa Touch?

I want to set the background color of a label using HSV instead of RGB. How do I implement this into code? Code: //.m file #import "IBAppDelegate.h" @implementation IBApp …
1
vote
3answers
403 views

Retain a random number across different functions in Cocoa?

I know how to do a global variable, but whenever I try to define a global variable with a random number function, xcode says "initializer element is not constant." The compiler doesn't want to mak …
0
votes
1answer
381 views

Do an action when a sound has finished playing in AVAudioPlayer?

I am using the AVAudioPlayer framework, and I have several sounds that play one at a time. When a sound is finished playing, I want the application to do something. I tried to use audioPlayerDidFi …
0
votes
1answer
205 views

Make irregular movement in cocos2d?

I am making a simple app in which filled circles bounce around the screen. Right now, the speed of the circles is fixed, but I want them to speed up or slow down randomly. I originally t …
0
votes
1answer
147 views

Can the cocos2d Director return time?

I am currently using the cocos2d Director for controlling my animation with the pause, resume, and stopAnimation methods. Is it also possible to use the Dire …
1
vote
2answers
91 views

Count the number of times a method is called in Cocoa-Touch?

I have a small app that uses cocos2d to run through four "levels" of a game in which each level is exactly the same thing. After the fourth level is run, I want to display an end game scene. The …
0
votes
2answers
258 views

Save additional information to a plist every time I run the app? (iphone)

My iphone app writes key-value pairs to a dictionary in a plist file. I'm basically saving the user's score when they play the game. This is all fine and dandy, but each time I run the app and g …
0
votes
2answers
156 views

Error while creating an nsarray from plist?

I am trying to create an NSArray from a .plist file, but I keep getting this error: "'NSUnknownKeyException', reason: '[<NSCFString 0x5bbca60> valueForUndefinedKey:]: this clas …
0
votes

Retain a random number across different functions in Cocoa?

In case anyone is wondering, I finally found a way to do this effectively. (I am sure this is what alltom was saying, I was just too dumb to understand.) I declared a float and a seed in my …