Tagged Questions
4
votes
5answers
89 views
in Obj-C, how could I make a switch statement that will evaluate classes, rather than just numbers?
in Obj-C a switch can only evaluate numbers. I'd like to be able to use it to compare classes of objects, something like this, for instance:
switch (currentSubViewController.class)
{
case ...
0
votes
0answers
20 views
User Switch Notification by Carbon in Objective C
following codes from https://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPMultipleUsers/Concepts/UserSwitchNotifications.html#//apple_ref/doc/uid/20002210-CJBJDAGF
demonstrates ...
0
votes
3answers
126 views
Using case switch instead of multiple if statements for error handling
I am building an application which has a login through a mobile SAAS - Parse.
There are multiple error codes that could be returned from a login request. At the moment run an if statement for each ...
0
votes
1answer
32 views
typdef enum issue
What I am looking at is probably a simple issue, but still could not figure out what is wrong with the code:
in header file(.h) im declaring this:
typedef enum {
ActivityTaskAdd = 1,
...
0
votes
1answer
43 views
Using Switch Statement with AVQueuePlayer?
I have a queue set up of four tracks. When the track changes, I want to change a UIImage, in regards to that specific track (If track 1 is playing I want to display an image titled 1.png, if track 2 ...
1
vote
3answers
64 views
Group case in a Switch/Case statement in objective-c [duplicate]
I have a switch case where at different case may correspond the same fragment of code.
Is there an elegant alternative, rather than duplicating all the code ?
switch(expression) {
case firstCase:
...
0
votes
0answers
39 views
Run Action enabling and disabling a Switch
I'm trying to turn OFF and disabling two switches when another switch gets ON and reabling them when switch come back to OFF.
I tried this ways
- (IBAction)ifSwitch0IsOn:(UISwitch *)sender {
...
3
votes
2answers
108 views
Switch statement syntax for same action through different cases
Two constants (1+2) share the same case statement. I don“t want to double the code.
What is the right syntax to do this?
switch (expression) {
case 0:
[self taskA];
...
0
votes
2answers
47 views
How can I decide if switch view value was changed by user interaction or by code in IOS?
I have a switch view on my UI and I'd like to handle the event when its value is changed. To perform this I've made an IBAction method to handle value changed event. So far so good.
My problem is I ...
2
votes
2answers
73 views
NSUserDefault and Switches
I use NSUserDefaults to save a switch on/off and so far it is good. It remembers the switch position in next session.
Now to the thing which I do not understand.
I use the same switch (with the same ...
-2
votes
4answers
148 views
Is there any reason to use switch statement instead of strings of if and elseif? [duplicate]
Possible Duplicate:
Advantage of switch over if-else statement
Why the switch statement and not if-else?
The switch statement seems to be totally useless. Anything it can do can be done ...
0
votes
0answers
143 views
BluetoothManager Framework NSObject Error [closed]
I tried to do an app for fun that can turn off and turn on bluetooth. I followed this and this but when i try to run my project i found an error : Lexical or Preprocessor issue 'NSObject.h' file not ...
0
votes
0answers
49 views
How to swap out a tabbarcontroller to a single navigationcontroller
When my application starts, a UITabbarcontroller is being initialized as shown below
// Set up Muse Tab (in app delegate)
DMQuestionsViewController *questionsViewController = ...
1
vote
2answers
42 views
cant figure out how to change views using an NSTimer
I made a class called view2 which is a UIView Controller subclass and when i run the program the timer works fine but when it changes screens it just goes to black and not the picture I have on view2. ...
0
votes
1answer
103 views
Compare a number in a switch statement
I need to compare an int in a switch statement, and I'm unsure of how I'm typing it wrong. Here's my code:
switch (y) {
case int y isgreater(1, 411):
// case code here...
To simplify ...
0
votes
5answers
77 views
Objective-C (iOS/Cocoa): expand first letter into day of week
I have a coded string "m8" or "w12" and I'd like to expand them into a day object "monday" or "wednesday" and a time object "8:00" or "12:00". The time I can handle but having trouble finding a ...
-1
votes
2answers
110 views
Pass storyboard names into a switch statement?
Can I make the name of the view the parameter for a switch statement? If so what would I use in the switch?
[self addChildViewController:[self.storyboard ...
0
votes
1answer
623 views
NSInvalidArgumentException, nil argument
I've looked over the site for a while and I saw a few things but nothing worked for me. Extreme newbie here though.
I'm trying to make a 2 component picker, populated from arrays, populated from a ...
0
votes
2answers
279 views
switch in calculator app objective-c not running
I'm working on a calculator app (code below) that takes values through a UITextField, stores them to an array (varArray) when an operand button is pushed. Pushing an operand button also stores that ...
0
votes
5answers
412 views
Fill an array with random characters chosen from a list without duplicates
I am trying to fill an array with 4 of 6 different characters where each character in the array is different. The character that is placed into the array is based on a switch statement. Then I want ...
0
votes
2answers
91 views
Switch Statement constant issue
- (void)change:(int)a {
int number = a;
int max = 10;
switch(max) {
case number:
//Do something
break;
//.... more cases
}
}
This is just a small example of ...
0
votes
1answer
113 views
Using Double in Switch Statement
All of the values below are doubles, yet switch requires a integer value. Is there anyway around this?
switch(fivePercentValue){
case floor((5*fivePercentValue) / 100):
...
-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:
...
0
votes
6answers
136 views
How do I change this if conditional into a switch statement?
I tried to change the following code from an if statement into a switch statement but I get an error saying that I need an integer and not an id object.
here's my switch:
-(void) ...
2
votes
2answers
95 views
How to paste [array count] to case:
I have switch. One of the cases must be a count of array:
int count = [array count];
switch (someValue) {
case 0:
[self foo];
break;
case count:
...
1
vote
0answers
94 views
Switch on an enum
I have the following piece of code:
switch (self.status) {
case refused:
message=NSLocalizedString(@"booking refused", nil);
break;
case accepted:
...
0
votes
2answers
167 views
Why isn't my didEndSelector in my NSAlert being called?
I can't figure out why my didEndSelector isn't being called. Any ideas?
- (void) showMonitorAlertIfNeeded {
if (! self.monitorAlert && [self isHideMonitorAlert]) {
...
1
vote
3answers
1k views
Objective C global constants with case/switch
Is there any way to use global int constants in Objective C that work in a case/switch statement? The technique here (http://stackoverflow.com/questions/538996/constants-in-objective-c) lets me ...
0
votes
1answer
96 views
Save attribute of a UIButton
I need some help with my code.
I have an UIAlert that pops up the first time that you open the app, in that pop up I have two buttons and the user will choose one of those. I want the app to remember ...
1
vote
1answer
407 views
Char type in a switch statement
I was looking at an earlier experiment of mine in which your input was one character and the output would display the 'binary code', but something went wrong and I can't seem to get where the problem ...
0
votes
2answers
205 views
Objective C: switch inside loop - how to avoid (potential) memory leak
I have a for loop where at the beginning an NSObject "value" is declared and then a switch statement within "value" is actually created. "value" then can be an NSNumber, an NSDate, an NSData, an ...
0
votes
1answer
517 views
Why can't I switch an enum in objective c
I can't seem to figure out how I should use a switch statement with my custom typedef enum. Xcode tells this error: Statement requires expression of integer type (MyEnum *) is invalid.
this is my ...
1
vote
4answers
156 views
Which construct is better suited for this situation, an if-else or a switch?
Which construct is better suited for this situation, an if-else or a switch?
- (id)hexEvaluator:(double)remainder
{
if(remainder == 0) {return [NSNumber numberWithInt:0];}
else if(remainder ...
3
votes
2answers
2k views
Using a Switch / Case statement in Obj-C
Below is a Switch / Case statement that displays a particular error message when something goes wrong. For the most part, everything seems right, but when I place the UIAlertView into the code to ...
1
vote
3answers
172 views
Is there are more elegant Solution for a large switch statement?
I have got map a lot of ranges to a value like 0-300 = 10 , 300-600 = 20, 600-900 = 30 ... 2500000-2700000 = 7000 .... So I could make a really large switch-statement/if-block but I wonder if there ...
0
votes
3answers
774 views
How do switch statements work in Objective-C?
I am using switch statements in Objective-C, and when I nest a switch statement inside another switch statement, a lot of errors are being found by the compiler. So my general question is how do ...
2
votes
3answers
3k views
Switch statements and instance variable allocation in Objective-C
I seem to be having a problem creating new local variables inside a switch statement. I thought it was something in my class headers, but was even getting errors trying to allocate a new NSObject. ...
0
votes
1answer
1k views
Getting an “Enumeration values 'x', 'y' and 'z' not handled in switch” message when, in fact, these enumerations are being handled. What's going on?
I have an enumeration defined as such:
//ModelClass.h
typedef enum { Automatic, Manual, Off } MyModes;
Later, in a ViewController, I have a switch statement within a method that switches on a ...
0
votes
1answer
160 views
Optimizing the objective c code
I have a method, which gets executed, say 20 times. My method has an argument, which has 20 unique values(integer value from 1 to 20), each time when the program control enters the method. The integer ...
3
votes
1answer
2k views
how detect swipe gesture direction?
i need to detect direction of my swipe gesture and i've got problem with it. gesture is working, but i don't know how to detect direction.
...
swipeGesture = [[UISwipeGestureRecognizer alloc] ...
2
votes
2answers
4k views
Objective-C Switch Statement [duplicate]
Possible Duplicate:
Declaring variables inside a switch statement
I'm having difficulty getting XCode to let me write a particular switch statement in Objective-C. I'm famiiar with the ...
55
votes
2answers
19k views
Case in protected switch [duplicate]
Possible Duplicate:
When converting a project to use ARC what does “switch case is in protected scope” mean?
Got the following xcode:
But when i try to put something in case 1 ...
0
votes
1answer
326 views
Trigger events when switching views
It is easy.
Suppose I have two views: firstView and SecondView.
firstView is the ROOT view.
I load secondView from firstView:
secondView *secondViewController;
secondViewController = [[SecondView ...
1
vote
8answers
958 views
Should I use an if or switch Statement? Objective-C
I have always wondered but can't find a definitive answer. When should I use either an 'if' or 'switch' statement. When is one better than the other?
For example I could do:
...
1
vote
2answers
102 views
Switch “Day of the Week”
I want to know the current day - and than do something special on this day
on monday = do this
on sunday = do that etc...
I know how to do the switch, but how can I ask to the current day?
if ...
27
votes
6answers
15k views
Can Objective-C switch on NSString?
Is there a more intelligent way to rewrite this?
if ([cardName isEqualToString:@"Six"]) {
[self setValue:6];
} else if ([cardName isEqualToString:@"Seven"]) {
[self setValue:7];
} else if ...
1
vote
2answers
841 views
Highly Performant Objective C Alternatives to the Switch Statement for Objects
I have a function which I would like to take in an NSString and an int arguments and then use the switch statement in order to return a calculated value, as in multiply the int by some constant, ...
1
vote
3answers
843 views
Alternative to switch statement in objective C
I am doing a project in which I am loading a table view with JSON data from an asynchronous connection. I am using a switch statement to load each row, like so:
dictionaryData = [responseString ...
1
vote
4answers
123 views
A random IBAction that only chooses each case once
I am having a problem making a IBAction that calls each case once in a random order.
I have done a lot of searching and not find a good solution to go about this problem.
The code I have so far is
...
4
votes
2answers
3k views
Why can I not use my constant in the switch - case statement in Objective-C ? [error = Expression is not an integer constant expression]
So I have an issue with using a constant variable in the following switch statement in Objective-C.
I have Constants.h with the following:
// Constants.h
extern NSInteger const TXT_NAME;
And ...




