User Evelyn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:15:17Z http://stackoverflow.com/feeds/user/129486 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1246213/slider-in-dashcode-web-app 2 Slider in dashcode web app? Evelyn 2009-08-07T18:08:24Z 2009-11-17T11:45:45Z <p>I am trying to make a web app in <a href="http://developer.apple.com/tools/dashcode/" rel="nofollow">Dashcode</a> that uses a range slider. I see that the code library has code for "get range slider value" and "set range slider value," but there is no range slider part. So how do I make a range slider? I'm very new to Javascript.</p> http://stackoverflow.com/questions/1189456/can-the-cocos2d-director-return-time 0 Can the cocos2d Director return time? Evelyn 2009-07-27T17:19:30Z 2009-08-03T04:35:44Z <p>I am currently using the cocos2d Director for controlling my animation with the <code>pause</code>, <code>resume</code>, and <code>stopAnimation</code> methods. Is it also possible to use the Director to return the time that the animation has played?</p> <p>I am currently using this method:</p> <pre><code>-(void)stopAnimation:(id)sender { //Timer initialized elsewhere: startTimer = [NSDate timeIntervalSinceReferenceDate]; //Do other method stuff here [[Director sharedDirector] stopAnimation]; stopTimer = [NSDate timeIntervalSinceReferenceDate]; elapsedTime = (stopTimer - startTimer); NSLog(@"elapsedTime = %f", elapsedTime); } </code></pre> http://stackoverflow.com/questions/1213393/can-i-make-my-iphone-app-created-in-xcode-into-a-web-application 1 Can I make my iphone app created in xcode into a web application? Evelyn 2009-07-31T16:00:55Z 2009-08-01T01:46:06Z <p>I made an application for the iphone in Xcode, but as a result of recent developments, I now need to make it into a web application. </p> <p>I know that Dashcode creates web applications suitable for the iphone. Can I somehow import my Xcode project into Dashcode? Or can I use Xcode to make it into web app without completely re-writing the application?</p> http://stackoverflow.com/questions/1209114/what-can-i-do-with-plist-files-outside-of-my-app 0 What can I do with plist files outside of my app? Evelyn 2009-07-30T20:23:42Z 2009-07-30T20:33:10Z <p>My iPhone app generates some very nice-looking plist files. I can look at them through xcode 's plist editor and through any plain text editor when I just want the xml. But can I do anything else with this data? I tried importing the xml into a spreadsheet in NeoOffice, but it just showed the plain text.</p> <p>All I'm asking is this: Is there some sort of tool that I can use which will let me put the plist or xml data into a spreadsheet? Or, what else can I do with my plist files? What other programs are available?</p> http://stackoverflow.com/questions/1208675/error-while-creating-an-nsarray-from-plist 0 Error while creating an nsarray from plist? Evelyn 2009-07-30T19:07:08Z 2009-07-30T20:04:20Z <p>I am trying to create an NSArray from a .plist file, but I keep getting this error: </p> <p>"<code>'NSUnknownKeyException', reason: '[&lt;NSCFString 0x5bbca60&gt; valueForUndefinedKey:]: this class is not key value coding-compliant for the key Value1.'</code>"</p> <p>In the .plist file, I have a key called "Item 1" and a string value called "Value1." Then in the code I have an NSArray being created from that file:</p> <pre><code>-(void)recordValues:(id)sender { // read "propertyList.plist" values NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"propertyList" ofType:@"plist"]; originalArray = [[NSArray alloc] initWithContentsOfFile:plistPath]; // dump the contents of the array to the log for (id key in originalArray) { NSLog(@"bundle: key=%@, value=%@", key, [originalArray valueForKey:key]); } //create an NSMutableArray containing the //user's score and the values from originalArray NSMutableArray *newArray = [NSMutableArray arrayWithObjects:[NSNumber numberWithFloat:userScore], nil]; [newArray addObjectsFromArray:array]; //write xml representation of mutableArray back to propertyList [newArray writeToFile:plistPath atomically:NO]; } } </code></pre> http://stackoverflow.com/questions/1201620/save-additional-information-to-a-plist-every-time-i-run-the-app-iphone 0 Save additional information to a plist every time I run the app? (iphone) Evelyn 2009-07-29T16:51:58Z 2009-07-29T17:04:56Z <p>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 get new scores, the new values get saved over the old values. How do I add information to the plist each time the user accesses the app instead of rewriting the file? I want to keep all of the scores, not just the most recent one.</p> <p>code:</p> <pre><code>-(void)recordValues:(id)sender { //read "propertyList.plist" from application bundle NSString *path = [[NSBundle mainBundle] bundlePath]; NSString *finalPath = [path stringByAppendingPathComponent:@"propertyList.plist"]; dictionary = [NSMutableDictionary dictionaryWithContentsOfFile:finalPath]; //create an NSNumber object containing the //float value userScore and add it as 'score' to the dictionary. NSNumber *number=[NSNumber numberWithFloat:userScore]; [dictionary setObject:number forKey:@"score"]; //dump the contents of the dictionary to the console for (id key in dictionary) { NSLog(@"memory: key=%@, value=%@", key, [dictionary objectForKey:key]); } //write xml representation of dictionary to a file [dictionary writeToFile:@"/Users/rthomas/Sites/propertyList.plist" atomically:NO]; } </code></pre> http://stackoverflow.com/questions/1078905/iphone-3-0-plist-file/1201423#1201423 0 Answer by Evelyn for iPhone 3.0 plist file ? Evelyn 2009-07-29T16:21:28Z 2009-07-29T16:21:28Z <p>I think you could use <a href="http://davepeck.org/iphone-artwork-tool/" rel="nofollow">this</a> tool.</p> http://stackoverflow.com/questions/1190297/count-the-number-of-times-a-method-is-called-in-cocoa-touch 1 Count the number of times a method is called in Cocoa-Touch? Evelyn 2009-07-27T19:57:21Z 2009-07-27T21:44:23Z <p>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 only way I have been able to handle this is by making four methods, one for each level. Gross.</p> <p>I have run into this situation several times using both cocos2d and only the basic Cocoa framework. So is it possible for me to count how many times a method is called? </p> http://stackoverflow.com/questions/1143963/make-irregular-movement-in-cocos2d 0 Make irregular movement in cocos2d? Evelyn 2009-07-17T15:22:30Z 2009-07-27T17:06:05Z <p>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. </p> <p>I originally tried to use NSTimer, but I discovered that the time interval could not be made irregular. According to Apple's documentation, with the NSAnimation class, "Unlike NSTimer, animation notifications can occur at irregular intervals, allowing you to create animations that appear to speed up or slow down."</p> <p>So it appears I should use the NSAnimation class. However, when I looked at the drawing process in NSAnimation, it seems to be bulky and limited. I want to make several circles and define parameters for their behavior, so I would <i> much </i> prefer to use a simpler framework such as cocos2d-iphone.</p> <p>Can I use cocos2d's scheduler to make irregular intervals? Or must I use NSAnimation?</p> <p>The cocos2d scheduler looks like this:</p> <pre><code>-(id) init { if( ! [super init] ) return nil; // schedule timer [self schedule: @selector(tick:)]; [self schedule: @selector(tick2:) interval:0.5]; return self; } -(void) tick: (ccTime) dt { // bla bla bla } -(void) tick2: (ccTime) dt { // bla bla bla } </code></pre> http://stackoverflow.com/questions/1174346/detect-touch-anywhere-on-the-screen-in-cocos2d 0 Detect touch *anywhere on the screen* in cocos2d? Evelyn 2009-07-23T20:39:07Z 2009-07-26T03:57:29Z <p>I'm really sorry, I realize there have been several questions asked about cocos2d touch detection (including <a href="http://stackoverflow.com/questions/880732/detecting-image-touch-cocos2d/1025207#1025207">this</a> answer which helped me a bunch), but I just can't get any of them to work. I would have commented on the answer I linked instead of asking my own question, but i don't have enough rep to leave comments. </p> <p>All I want to do is stop animation as soon as a user taps anywhere on the screen.</p> <p>Here's my code so far:</p> <pre><code>- (BOOL)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { NSLog(@"Touches Began"); UITouch *touch = [touches anyObject]; CGPoint location = [touch locationInView: [touch view]]; location = [[Director sharedDirector] convertCoordinate: location]; CGRect mySurface = (CGRectMake(100, 100, 320, 480)); if(CGRectContainsPoint(mySurface, location)) { NSLog(@"Event Handled"); return kEventHandled; [[Director sharedDirector] stopAnimation]; } return kEventIgnored; NSLog(@"Event Ignored"); } </code></pre> <p>I've tried both <code>BOOL</code> and <code>void</code>, <code>ccTouchesBegan</code> and <code>touchesBegan</code>, in a layer file and a cocosNode file, and many other things. Nothing happens. Nothing shows in the log, and the animation continues on its merry little way. What am I doing wrong?</p> http://stackoverflow.com/questions/1060171/retain-a-random-number-across-different-functions-in-cocoa/1119820#1119820 0 Answer by Evelyn for Retain a random number across different functions in Cocoa? Evelyn 2009-07-13T14:36:43Z 2009-07-13T17:26:01Z <p>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.)</p> <p>I declared a float and a seed in my .h file: </p> <pre><code>- (float)generate:(id)sender; - (void)seed; </code></pre> <p>And in the implementation file, I defined the float as a random number, and I used srandom() as a random seed generator.</p> <pre><code>- (float)generate:(id)sender { //Generate a number between 1 and 100 inclusive int generated; generated = (random() % 100) + 1; return(generated); } - (void)seed { srandom(time(NULL)); } </code></pre> <p>Then anywhere I wanted to retain a random number, I used </p> <pre><code>srandom(time(NULL)); generated1 = ((random() % 100) + 1)/100.0; </code></pre> <p>to initiate the number, and from there I was able to use generated1, generated2, hue, etc. as variables in any function I wanted (and I made sure to declare these variables as floats at the top of the file).</p> http://stackoverflow.com/questions/1060171/retain-a-random-number-across-different-functions-in-cocoa 1 Retain a random number across different functions in Cocoa? Evelyn 2009-06-29T19:57:17Z 2009-07-13T17:26:01Z <p>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 make a variable from a random number because the random number function is not constant. </p> <p>How do I generate a random number and then use that same value for more than one action? (For example, to define a color and then write that value to a label?)</p> <p>Code:</p> <pre><code>#import "Slider_with_IBAppDelegate.h" float * const hue = ((arc4random() % ((unsigned)100 + 1))/100.0); //^this is where I get the error: "initializer element is not constant" @synthesize label //write value to label - (IBAction) doButton { label.text = [NSString stringWithFormat:@"%f", hue]; } //set background color - (void)applicationDidBecomeActive:(UIApplication*)application { self.label5.backgroundColor = [UIColor colorWithHue:hue saturation:1.0 brightness:1.0 alpha:1.0]; } </code></pre> <p>----edit------</p> <p>Thanks for the suggestions. It still doesn't work for me, though, what am I doing wrong?</p> <p>New code:</p> <pre><code>#import "Slider_with_IBAppDelegate.h" float const hue = ((arc4random() % ((unsigned)100 + 1))/100.0); //^I still get the error: "initializer element is not constant." @synthesize label //write value to label - (IBAction) doButton { label.text = [NSString stringWithFormat:@"%f", hue]; } //^this is where I get the error "'hue' undeclared (first use of this function)" //set background color - (void)applicationDidBecomeActive:(UIApplication*)application { hue = ((arc4random() % ((unsigned)1000 + 1))/1000.0); /*here I get the error "assignment of read-only variable 'hue.'" If I insert "float" just before hue, I do not get this error, but it still won't compile because of the error above.*/ self.label5.backgroundColor = [UIColor colorWithHue:hue saturation:1.0 brightness:1.0 alpha:1.0]; } </code></pre> http://stackoverflow.com/questions/1111691/do-an-action-when-a-sound-has-finished-playing-in-avaudioplayer 0 Do an action when a sound has finished playing in AVAudioPlayer? Evelyn 2009-07-10T20:03:02Z 2009-07-13T16:59:14Z <p>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 audioPlayerDidFinishPlaying to do the action at the end of the first sound, but I couldn't use that for the second sound because I got a redefinition error. Can I use NSTimeInterval to get the duration of a sound?</p> <pre><code>// ViewController.h #import &lt;UIKit/UIKit.h&gt; #import &lt;AVFoundation/AVFoundation.h&gt; #import &lt;AVFoundation/AVAudioPlayer.h&gt; @interface ViewController : UIViewController { UIButton *begin; UIWindow *firstTestWindow; UIWindow *secondTestWindow; AVAudioPlayer *player; NSTimeInterval duration; } @property (nonatomic, retain) IBOutlet UIButton *begin; @property (nonatomic, retain) IBOutlet UIWindow *firstTestWindow; @property (nonatomic, retain) IBOutlet UIWindow *secondTestWindow; @property (nonatomic, retain) AVAudioPlayer *player; @property (readonly) NSTimeInterval duration; - (IBAction)begin:(id)sender; - (IBAction)doTapScreen:(id)sender; @end //ViewController.m #import "ViewController.h" @implementation ViewController @synthesize begin, player, firstTestWindow, secondTestWindow; //first sound - (IBAction)begin:(id)sender; { [firstTestWindow makeKeyAndVisible]; NSString *soundFilePath = [[NSBundle mainBundle] pathForResource: @"Tone1" ofType: @"mp3"]; NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: soundFilePath]; AVAudioPlayer *newPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL: fileURL error: nil]; [fileURL release]; self.player = newPlayer; [newPlayer release]; [player prepareToPlay]; [self.player play]; } //If user does not do anything by the end of the sound go to secondWindow - (void) audioPlayerDidFinishPlaying: (AVAudioPlayer *) player successfully: (BOOL) flag { if (flag==YES) { [secondWindow makeKeyAndVisible]; } } //second sound - (IBAction)doTapScreen:(id)sender { //When user touches the screen, either play the sound or go to the next window if (self.player.playing) { [self.player stop]; [thirdWindow makeKeyAndVisible]; } else { NSString *soundFilePath = [[NSBundle mainBundle] pathForResource: @"Tone2" ofType: @"mp3"]; NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: soundFilePath]; AVAudioPlayer *newPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL: fileURL error: nil]; [fileURL release]; self.player = newPlayer; [newPlayer release]; [player prepareToPlay]; [self.player play]; } } </code></pre> http://stackoverflow.com/questions/1050874/how-do-i-convert-rgb-into-hsv-in-cocoa-touch 1 How do I convert RGB into HSV in Cocoa Touch? Evelyn 2009-06-26T19:42:25Z 2009-06-29T12:26:44Z <p>I want to set the background color of a label using HSV instead of RGB. How do I implement this into code?</p> <p>Code:</p> <pre><code>//.m file #import "IBAppDelegate.h" @implementation IBAppDelegate @synthesize label; { self.label.backgroundColor = [UIColor colorWithRed:1.0f green:0.8f blue:0.0f alpha:1.0f]; } </code></pre> http://stackoverflow.com/questions/1049674/how-do-i-edit-an-interface-builder-object-programmatically 1 How do I edit an interface builder object programmatically? Evelyn 2009-06-26T15:14:27Z 2009-06-26T15:37:46Z <p>I created a label using Interface Builder, and now I want to set the background color of the label using code instead of IB's color picker. (I want to do this so that I can define the color using RGB and eventually change the colorspace for the label.) </p> <p>I'm in cocoa. How do I edit the attributes of an IB object using code?</p> <p>My code looks like this:</p> <pre><code>//.h file #import &lt;UIKit/UIKit.h&gt; @interface IBAppDelegate : NSObject { UILabel *label; } @property (nonatomic, retain) IBOutlet UILabel *label; @end //.m file #import "IBAppDelegate.h" @implementation IBAppDelegate @synthesize label; (memory stuff...) @end </code></pre> http://stackoverflow.com/questions/1246213/slider-in-dashcode-web-app/1354258#1354258 Comment by Evelyn on Slider in dashcode web app? Evelyn 2009-09-22T17:08:27Z 2009-09-22T17:08:27Z Ahh. Well that's obnoxious. Thanks. :) http://stackoverflow.com/questions/1246213/slider-in-dashcode-web-app/1354258#1354258 Comment by Evelyn on Slider in dashcode web app? Evelyn 2009-09-13T15:45:09Z 2009-09-13T15:45:09Z 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&gt;parts&gt;buttons while in web app mode, there is no such slider. http://stackoverflow.com/questions/1213393/can-i-make-my-iphone-app-created-in-xcode-into-a-web-application/1213410#1213410 Comment by Evelyn on Can I make my iphone app created in xcode into a web application? Evelyn 2009-07-31T16:49:24Z 2009-07-31T16:49:24Z Cool! I've never heard of Cappuccino before. Looks very useful. http://stackoverflow.com/questions/1208675/error-while-creating-an-nsarray-from-plist Comment by Evelyn on Error while creating an nsarray from plist? Evelyn 2009-07-31T12:32:29Z 2009-07-31T12:32:29Z Oh yeah. Thanks. http://stackoverflow.com/questions/1209114/what-can-i-do-with-plist-files-outside-of-my-app Comment by Evelyn on What can I do with plist files outside of my app? Evelyn 2009-07-31T12:22:18Z 2009-07-31T12:22:18Z Put it in a spreadsheet. http://stackoverflow.com/questions/1208675/error-while-creating-an-nsarray-from-plist/1208945#1208945 Comment by Evelyn on Error while creating an nsarray from plist? Evelyn 2009-07-30T20:08:27Z 2009-07-30T20:08:27Z Yay! It worked. http://stackoverflow.com/questions/1208675/error-while-creating-an-nsarray-from-plist Comment by Evelyn on Error while creating an nsarray from plist? Evelyn 2009-07-30T20:05:41Z 2009-07-30T20:05:41Z 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. http://stackoverflow.com/questions/1208675/error-while-creating-an-nsarray-from-plist Comment by Evelyn on Error while creating an nsarray from plist? Evelyn 2009-07-30T20:00:46Z 2009-07-30T20:00:46Z 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? http://stackoverflow.com/questions/1208675/error-while-creating-an-nsarray-from-plist/1208874#1208874 Comment by Evelyn on Error while creating an nsarray from plist? Evelyn 2009-07-30T19:42:47Z 2009-07-30T19:42:47Z 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. http://stackoverflow.com/questions/1201620/save-additional-information-to-a-plist-every-time-i-run-the-app-iphone/1201671#1201671 Comment by Evelyn on Save additional information to a plist every time I run the app? (iphone) Evelyn 2009-07-30T15:19:15Z 2009-07-30T15:19:15Z Oh okay! I think I got it. Thanks. http://stackoverflow.com/questions/1201620/save-additional-information-to-a-plist-every-time-i-run-the-app-iphone/1201671#1201671 Comment by Evelyn on Save additional information to a plist every time I run the app? (iphone) Evelyn 2009-07-30T13:02:42Z 2009-07-30T13:02:42Z I'm still having trouble. Are you saying I need to create an array of dictionaries? http://stackoverflow.com/questions/1201620/save-additional-information-to-a-plist-every-time-i-run-the-app-iphone/1201707#1201707 Comment by Evelyn on Save additional information to a plist every time I run the app? (iphone) Evelyn 2009-07-29T17:09:17Z 2009-07-29T17:09:17Z That helps too. :) http://stackoverflow.com/questions/1201620/save-additional-information-to-a-plist-every-time-i-run-the-app-iphone/1201671#1201671 Comment by Evelyn on Save additional information to a plist every time I run the app? (iphone) Evelyn 2009-07-29T17:03:35Z 2009-07-29T17:03:35Z Ah. So that's what an array is. Thanks so much! http://stackoverflow.com/questions/1174346/detect-touch-anywhere-on-the-screen-in-cocos2d/1183689#1183689 Comment by Evelyn on Detect touch *anywhere on the screen* in cocos2d? Evelyn 2009-07-28T13:47:35Z 2009-07-28T13:47:35Z I did that, and it still didn't do anything... http://stackoverflow.com/questions/1190297/count-the-number-of-times-a-method-is-called-in-cocoa-touch/1190407#1190407 Comment by Evelyn on Count the number of times a method is called in Cocoa-Touch? Evelyn 2009-07-27T20:32:53Z 2009-07-27T20:32:53Z Wow! I've been living in the dark all this time! Should've asked this question weeks ago. Thanks. :)