Retain a random number across different functions in Cocoa? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:33:04Zhttp://stackoverflow.com/feeds/question/1060171http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1060171/retain-a-random-number-across-different-functions-in-cocoa1Retain a random number across different functions in Cocoa?Evelyn2009-06-29T19:57:17Z2009-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/1060171/retain-a-random-number-across-different-functions-in-cocoa/1060259#10602593Answer by alltom.com for Retain a random number across different functions in Cocoa?alltom.com2009-06-29T20:13:05Z2009-06-29T20:13:05Z<p>Make it non-const and initialize it in applicationDidBecomeActive. Is there a reason it must be constant?</p>
http://stackoverflow.com/questions/1060171/retain-a-random-number-across-different-functions-in-cocoa/1061562#10615620Answer by Peter Hosey for Retain a random number across different functions in Cocoa?Peter Hosey2009-06-30T03:19:55Z2009-06-30T03:19:55Z<blockquote>
<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 "incompatible types in initialization."</p>
<pre><code>float * const hue = ((arc4random() % ((unsigned)100 + 1))/100.0);
</code></pre>
</blockquote>
<p>That's not a function; it's an expression. I'd be surprised if you're not also getting an error here, because you can't initialize a global variable with an expression that isn't constant. As alltom.com says, you need to assign to it from <code>applicationDidBecomeActive:</code>.</p>
<p>The warning is because you've given the variable a pointer type (<code>float *</code>), but you're not assigning a pointer to it. Cut out the asterisk, because you're not going to put a pointer in this variable.</p>
<blockquote>
<p>Xcode doesn't want to make a variable from a random number because the random number function is not constant.</p>
</blockquote>
<p>Xcode doesn't care one way or the other. It's just reporting the findings of the compiler. By default, the compiler for Objective-C is GCC, but Xcode supports other compilers (and Xcode does come with one other C/Objective-C compiler: LLVM-GCC).</p>
<blockquote>
<p>… I couldn't call the same value for the label.</p>
</blockquote>
<p>You're not showing a label here, and you can't call a value. You can only call a function, and you don't have one in the code shown.</p>
<blockquote>
<p>It gave me the error "function undefined: first use of this function" in doButton even though it was defined in applicationDidBecomeActive.</p>
</blockquote>
<p>No, it wasn't. Assigning to a variable does not create a function.</p>
http://stackoverflow.com/questions/1060171/retain-a-random-number-across-different-functions-in-cocoa/1119820#11198200Answer by Evelyn for Retain a random number across different functions in Cocoa?Evelyn2009-07-13T14:36:43Z2009-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>