-4
votes
1answer
36 views

Selecting random String from .plist? [closed]

I am currently new to developing and have run into a problem. I would like to read string from a .plist and when a button is pressed it picks a random string and presents it in a label? I have a ...
0
votes
2answers
67 views

Objective C Random Number [duplicate]

I have one piece of code that is giving me some trouble and is confusing. Here is the piece of code... int r = rand() % 100; printf("Random number: %u", r); Why does it print 7 every time? ...
0
votes
3answers
69 views

Create a random CLLocationCoordinate in a certain area

I've got an MKMapRect. How do I create a random CLLocationCoordinate inside there? I know there is arc4random(), but how can I use it for GPS Coordinates?
-3
votes
5answers
93 views

Algorithm to make something happen x percent of the time [closed]

How would I go about devising an algorithm (which I'll implement in Objective-C) to make something happen a particular percentage of the time? For instance, I have a list of advertisements, some of ...
-1
votes
2answers
62 views

Randomly choose between three images

I want to make a random choice of one of three images, and I believe I should use arc4random(), but I can't be certain. Here is the simple code I have: SPImage *image = [SPImage ...
0
votes
1answer
35 views

arc4random sign

Why this code don't work? -(void)tick:(ccTime)dt { ...... float impulse = - (arc4random() % 2500) ; cpBody *body = cpShapeGetBody(player.shape); cpBodyApplyImpulse(body, cpv( 0 ...
1
vote
3answers
104 views

generating random numbers without consecutive repetition

How can I generate random integers from 0 - 4 in such a way that the same number is not generated twice consecutively? For example, if 3 is the number that is generated the first time then 0,1,2,4 ...
-5
votes
2answers
68 views

How do I randomly sort a list into two lists [closed]

I have an array and I want to randomly put items in the array into two list with the same size I'm thinking of putting the items into two arrays but not sure if this is the best idea. Besides putting ...
0
votes
2answers
58 views

Shuffling the results from an NSFetchedResultsController

I'm using an NSFetchedResultsController to pull a few thousand results out of a Core Data structure and display them in a UITableView. I have a few available options that perform fetches with ...
0
votes
2answers
154 views

Which one is the correct way of using “arc4rand()”

I am new to objective C and trying to understand arc4random(). There are so many conflicting explanations on the web. Please clear my confusion, which of the following is correct: // 1. ...
0
votes
2answers
37 views

How to zero new random elements of a 3d array

I need an algorithm that takes some random elements from a 3d array and sets their value to zero , then without the possibility of selecting one of the elements that were picked, it goes on till a ...
0
votes
2answers
57 views

Ranges generated with arc4random() are incorrect

This is my code: secretPointX = (arc4random() % 600) + 400; secretPointY = (arc4random() % 350) + 250; I use these as coordinates, and use them for the radius of a circle using pythagoras ...
0
votes
1answer
68 views

Modifying the results of a Core Data fetch request before displaying them

I've got an application which pulls back data from a database using Core Data, and displaying it in a custom cell in a UITableView, via an NSFetchedResultsController. I'd like to randomly insert a ...
4
votes
2answers
129 views

Randomly generate “-1” or “1” - Shortest Method

I need to randomly generate either a "-1" or a "1" to determine the sign of a number randomly... What's the shortest method? I am currently using this but it seems pretty long: sign = ...
4
votes
2answers
118 views

Non-uniform random numbers in Objective-C

I'd like to calculate a non-uniformly distributed random number in the range [0, n - 1]. So the min possible value is zero. The maximum possible value is n-1. I'd like the min-value to occur the most ...
0
votes
2answers
141 views

Objective C - Random Character Generator

im looking for some help for a random character generator. At the moment i know how to create the generator using switch and char but i would like the code to go through the awnsers yes, no and maybe ...
-2
votes
1answer
120 views

Objective C - Fill a UIlabel with a random string after clicking a button [duplicate]

Possible Duplicate: Generate a random alphanumeric string in cocoa I'm new to objective c and I would like to add the following functionality to my app: I have a label which has default ...
3
votes
1answer
74 views

Randomly Generating Enemy Stats Depending on Game State [closed]

In my game, I want that, the more the player is playing a game, the harder are the enemies to kill by generating them randomly, like the game "Dungeon Raid" on iOS. Here's the stat that the enemies ...
1
vote
1answer
97 views

XCode throws random errors when there are none

Every once in a while, usually after I've done some trail and error on my code, XCode throws random errors at me even though I've removed the previous incorrect code snippets, and even though I've ...
0
votes
1answer
59 views

Reading a specific line from a Plist

Hi I've been looking all over and can't seem to find an answer to my issue. I have very little experience with programming, especially Objective-C. In my app there is a plist with a certain number of ...
0
votes
3answers
283 views

Want to generate non repeating random numbers [duplicate]

Possible Duplicate: Generating non-repeating random numbers Here is my code NSUInteger count = 10; for (NSUInteger i = 0; i < count; ++i) { ...
0
votes
1answer
291 views

Random text generator- iOS

I want to make a random text generator, I know how to do a regular one but in this case I cannot get it working. So the code I have take or choose a picture and then it displays it on a different view ...
1
vote
2answers
270 views

Simple dice roller in objective-c

My goal is to design a dice game in this way: Roll 1 die, if this die is even, you get one extra die and you can now roll 2 dice. If every die is even, you get one extra dice, and so on... My ...
1
vote
1answer
91 views

Seeded random number generator

What is the best seeded random number generator on ObjC? I have to generate the same random number sequences on 2 different iPhones, therefore it has to be seeded. This is why I can't use arc4rand(). ...
1
vote
2answers
115 views

picking random text from xml source in objective-c

I am trying to select a random bible verse from xml files I already have. Id like to extract a random verse, display it then also display show also the verse number and book name. I have several xml ...
0
votes
3answers
112 views

Generate two random numbers on the same line of code?

I've stumbled into a quite surprising problem while doing some iOS stuff with random numbers. Compare these: a) int xOffsetSign = randomIntWithUpperLimit(2) ? 1:-1; int yOffsetSign = ...
1
vote
8answers
874 views

Generate random number between 1 and 10 without repetition [closed]

I want to generate a random number between 1 and 10. When the user clicks on the “next” button then a random question must be printed and questions can not repeat. The problem is that sometimes the ...
1
vote
2answers
99 views

program doesn't remember value/can't return value (XCode)

Hi I have a little a problem. My program doesn't remember random value which is generated by clicking first button. But I want use that value in another button and there is the problem. If I try to ...
-2
votes
2answers
148 views

If statement after rand() in Objective-C

I'm a beginner in Objective-C and also in the C language. My code looks like: - (IBAction)button:(id)sender { int randomproces = rand() % 3; switch (randomproces) { case 0: ...
1
vote
2answers
119 views

Objective-C repeatable random number generators a la java.util.Random

For testing and other purposes, it is often useful to be able to generate multiple streams of repeatable random numbers. In Java, there is java.util.Random. You can create multiple Random objects ...
0
votes
3answers
85 views

different UIImages for different UIImageView's from NSMutableArray

I have an NSMutableArray of 4 different objects: Also I have 4 UIImageView's: For obtaining different images from this array i wrote a code but it doesn't work. Any suggestions, please? images = ...
2
votes
2answers
1k views

How do I seed the rand() function in Objective-C?

Part of what I'm developing is a random company name generator. It draws from several arrays of name parts. I use the rand() function to draw the random name parts. However, the same "random" numbers ...
2
votes
0answers
167 views

How to place UIImageView randomly on X & Y axis but with linear mode?

I have reached up to image shown in the snapshot. But still its Y is at bottom only and I am not able to set the X properly overlapped. Images at Y can be up and down but cannot have the same Y as ...
0
votes
1answer
140 views

iphone development: random animation

In my iphone application I have several images. lets say some small square images. what I want is I want that small objects appear from the top of the screen at rondom times and leaves the screen from ...
1
vote
4answers
262 views

How do I generate a random lowercase letter in Objective-C?

I'm new to the syntax, so that's where I need help. Conceptually, I get it. But syntax is foreign to me.
0
votes
2answers
187 views

NSMutableArray with random objects

This is my first question on this forum and I hope u don't blame me. I'm trying to make an app and need some help with NSMutableArray. I declared in .h file some UIIMageView objects like this: ...
1
vote
1answer
99 views

Random value with CCCallFunc: value not updated?

Would you know how to change the value of flashPosX ? A "log" in changeFlashPosX works fine, but the value does not change: -(void)changeFlashPosX{ CCLOG(@"change"); flashPosX = random() % ...
0
votes
3answers
249 views

Random non repeat number Xcode

Sorry for my bad English, I'm argentinian. I have a question, I am makin a trivia application and logically it doesn't have to re-ask the same. I have 30 questions and this is my code: ...
0
votes
2answers
61 views

Can't quite get the randomization down

I have built a specialized card application. What it does is allow a user to 'draw' a card, then view the card, and place it back in a random place in the deck. The only problem that I am having is ...
1
vote
5answers
304 views

Deterministic random number generator with context?

I am looking for a seeded random number generator that creates a pool of numbers as a context. It doesn't have to be too good. It is used for a game, but it is important, that each instance of the ...
0
votes
1answer
96 views

Clean screen of random images

This is my first time posting something, first of all you got to know two things, I'm very rookie on objective-c and english is not my native language, so if you don't understand well please ask :) ...
-1
votes
2answers
262 views

Create random series of numbers for iOS app

I need to get random numbers that are uniform distributed. The issue is I need every time the app start to check for some MAX number and then go randomly on all the numbers from 0 to MAX without ...
0
votes
1answer
198 views

How to distribute cards until the entire card stack/pack is distributed based on shuffling/random numbers, with a click of a button?

I am creating my first card game, and need to shuffle the cards. So for starters, I have created a shuffle button for a sample stack of 4 values with the line: int i = arc4random() % 4; NSLog(@"%d", ...
1
vote
2answers
420 views

Multiple random number generators in Objective C

In my current project I need multiple random number generators because I need to be able to repeat their sequences independently from each other. So far I did not find any way to achieve this with the ...
2
votes
5answers
6k views

Objective-c EXC_BAD_ACCESS (code=2, address=0x42)

I'm new in Objective-C programmation and I receive this error when I run my little program (I just want to generate a random char). So here's what I've done so far: (IBAction)generate{ int a = ...
1
vote
3answers
120 views

How to select random method using perform selector?

In my application I use performSelector to call methods. I have three different methods in my application, I want that randomly I assign one of these three methods to perform selector. Here is my ...
1
vote
1answer
116 views

SQLite for iOS - RANDOM() not good enough

I am working on an iOS word game which is built around pulling random words from a SQLite database. So I have 1 table, Words, I pull out X random words like so: SELECT Word FROM (SELECT Word FROM ...
3
votes
2answers
271 views

iPhone Objective-c: weighted random letter

I need a simple way to randomly select a letter from the alphabet, weighted on the percentage I want it to come up. For example, I want the letter 'E' to come up in the random function 5.9% of the ...
3
votes
2answers
1k views

Pick random element of NSArray in Objective-C [duplicate]

Possible Duplicate: Picking a Random Object in an NSArray I have have an array in Objective-C with strings: NSArray *tips; tips = [NSArray arrayWithObjects: @"Foo", @"Bar", ...
1
vote
1answer
865 views

Cocos2D random sprite movement

As a very beginner in Cocos2D i´m trying to make an iPhone game where some cows move randomly around the screen. I used the code for moving the sprites from here: highoncoding.com/.../. I´m adding the ...

1 2 3