Evelyn

97
Reputation
184 views

Registered User

Name Evelyn
Member for 5 months
Seen Oct 27 at 3:50
Website
Location OH
Age
I'm a girl.
Sep
22
comment Slider in dashcode web app?
Ahh. Well that's obnoxious. Thanks. :)
Sep
13
comment Slider in dashcode web app?
Yes, that slider does exist when you look in the library while making a Dashboard widget. But it is not there when you are making a web app. If I go under library>parts>buttons while in web app mode, there is no such slider.
Aug
7
asked Slider in dashcode web app?
Jul
31
comment Can I make my iphone app created in xcode into a web application?
Cool! I've never heard of Cappuccino before. Looks very useful.
Jul
31
asked Can I make my iphone app created in xcode into a web application?
Jul
31
comment Error while creating an nsarray from plist?
Oh yeah. Thanks.
Jul
31
revised Can the cocos2d Director return time?
added code
Jul
31
comment What can I do with plist files outside of my app?
Put it in a spreadsheet.
Jul
30
asked What can I do with plist files outside of my app?
Jul
30
comment Error while creating an nsarray from plist?
Yay! It worked.
Jul
30
comment Error while creating an nsarray from plist?
I forgot I left one of my old variables in there, which doesn't make sense if you don't know what the app does. :) Sorry. Fixed it.
Jul
30
revised Error while creating an nsarray from plist?
added 9 characters in body
Jul
30
comment Error while creating an nsarray from plist?
Sure! I have a property list which is an array. These are basically like high scores in a game. When someone plays the game, I add their scores to a brand new NSMutableArray. Then I take this new mutable array and combine it with the high scores from my property list, and write the whole collection back to the original plist file. But I'm getting an error and I don't know why. Does that make sense?
Jul
30
comment Error while creating an nsarray from plist?
the root is an NSArray. How do I read it as an NSArray then? I need to add values, and I can't add values with an NSDictionary.
Jul
30
asked Error while creating an nsarray from plist?
Jul
30
comment Save additional information to a plist every time I run the app? (iphone)
Oh okay! I think I got it. Thanks.
Jul
30
comment Save additional information to a plist every time I run the app? (iphone)
I'm still having trouble. Are you saying I need to create an array of dictionaries?
Jul
29
comment Save additional information to a plist every time I run the app? (iphone)
That helps too. :)
Jul
29
comment Save additional information to a plist every time I run the app? (iphone)
Ah. So that's what an array is. Thanks so much!
Jul
29
asked Save additional information to a plist every time I run the app? (iphone)
Jul
29
answered iPhone 3.0 plist file ?
Jul
29
revised Can the cocos2d Director return time?
edited tags
Jul
28
comment Detect touch *anywhere on the screen* in cocos2d?
I did that, and it still didn't do anything...
Jul
27
comment Count the number of times a method is called in Cocoa-Touch?
Wow! I've been living in the dark all this time! Should've asked this question weeks ago. Thanks. :)
Jul
27
comment Count the number of times a method is called in Cocoa-Touch?
You just solved my life.
Jul
27
comment Count the number of times a method is called in Cocoa-Touch?
How do I do that?
Jul
27
asked Count the number of times a method is called in Cocoa-Touch?
Jul
27
asked Can the cocos2d Director return time?
Jul
27
revised Make irregular movement in cocos2d?
Clarified
Jul
27
comment Detect touch *anywhere on the screen* in cocos2d?
I'm foggy on what extending means. Am I supposed to do @interface GameLayer : Layer <CocosNode> or @interface Node : CocosNode <Layer>?
Jul
23
asked Detect touch *anywhere on the screen* in cocos2d?
Jul
22
comment Make irregular movement in cocos2d?
Oh I get it! Thanks. :)
Jul
20
comment Make irregular movement in cocos2d?
What is the movement delta? I already have random movement, I want random speed.
Jul
17
asked Make irregular movement in cocos2d?
Jul
13
revised Retain a random number across different functions in Cocoa?
clarified
Jul
13
awarded  Commentator
Jul
13
comment Do an action when a sound has finished playing in AVAudioPlayer?
Cool! Thanks. Could you give me any sample code for duration in AVAudioPlayer? That document only gives me the property declaration. Say for example I want a window to appear after the sound has been playing for 15 seconds. How do I do that in code?
Jul
13
comment Do an action when a sound has finished playing in AVAudioPlayer?
Oh okay! That does work. Thanks. :) I wish I could do a different action for different sounds, though. I can only do the same action for both sounds using that method. (I just have one more question: is there any way for me to use NSTimeInterval to get the duration of a sound? Because that value would be very useful to me in other functions.)
Jul
13
answered Retain a random number across different functions in Cocoa?
Jul
13
comment Do an action when a sound has finished playing in AVAudioPlayer?
By the way, when I put in [player setDelegate: self], I get the warning: "class 'ViewController' does not implement the 'AVAudioPlayerDelegate' protocol." Is that a problem?
Jul
13
comment Do an action when a sound has finished playing in AVAudioPlayer?
Oh! Yeah, I totally meant to say audioPlayerDidFinishPlaying, not applicationDidFinishLaunching. Sorry. I set the delegate to self, and it worked for the first sound. But the problem is not that audioPlayerDidFinishPlaying doesn't work, the problem is that I don't know how to do it again for a second sound. I have two different sounds.
Jul
10
asked Do an action when a sound has finished playing in AVAudioPlayer?
Jun
30
revised Retain a random number across different functions in Cocoa?
Showed implementation of suggestions
Jun
30
comment Retain a random number across different functions in Cocoa?
Thanks for not giving up on me. :) It still doesn't work. Even when I do exactly that, I now get a new message that says "error: assignment of read-only variable 'hue'" under applicationDidBecomeActive. I'll post the edits.
Jun
30
comment Retain a random number across different functions in Cocoa?
What am I doing wrong?
Jun
30
revised Retain a random number across different functions in Cocoa?
Extended question, clarified meaning
Jun
30
comment Retain a random number across different functions in Cocoa?
Thanks for helping me get my terms straight. :) Yes, I am getting an error after the global variable because of the fact that the random number isn't constant. That's the whole point of my question. The label is defined in the header file. doButton writes text to the label--all I want is to print the hue value of label5. I did try initializing it in applicationDidBecomeActive, I just didn't show that version of the code here. Maybe I just missed something. I'll try it again.
Jun
29
comment Retain a random number across different functions in Cocoa?
I tried that but then I couldn't call the same value for the label. It gave me the error "function undefined: first use of this function" in doButton even though it was defined in applicationDidBecomeActive.
Jun
29
revised Retain a random number across different functions in Cocoa?
tweaked code
Jun
29
asked Retain a random number across different functions in Cocoa?