0
votes
2answers
43 views

Unable to calculate the sum of prime numbers below 2 million

I'm doing the Euler's Method project to find the sum of prime numbers below 2 million and I'm struggling. Here is the code I'm using. When I calculate the sum below 10 and the sum below 50 I'm getting ...
-2
votes
1answer
37 views

How to check for True or False on Objective C BOOL variable [closed]

I have a NSObject that contains several objects a couple of which are BOOL variables which are set to either "T" or "F" I would like to know how to use them in an If statement that looks like this. ...
2
votes
1answer
76 views

In NSLog, methods return an upsidedown question mark

I can access a property declared like so: @property (nonatomic, assign, getter = isPrivateSickDay) BOOL privateSickDay; - (BOOL)isPrivateShortDay; Using the following: int sick = ...
0
votes
1answer
46 views

If Statement Failing sometimes with id BoolValue Comparison?

I am pulling data from the web that is formatted in JSON and when I parse the data using "ValueForKeyPath" it stores the string value as an id object. So I store the data into a NSMutableArray In the ...
0
votes
2answers
57 views

property doesn't set after lazy initialization objective-c

I have a BOOL property and at the start this property equals NO. I want to set this property to YES from the start of my program, but with opportunity to toggle it. For this, I made this getter: ...
1
vote
4answers
138 views

How to compare @NO and @YES with elegance and without risk of false positives/negatives?

I want to use bool literals like if (condition == @NO) { } else if (condition == @YES) { { When I try this, XCode wants me to use NSNumber methods to compare, like isEqualTo. Is there a simpler ...
0
votes
2answers
59 views

Tiny url is stopping function from working

How can I get this function working if the link is shortened by tiny url or something similar? It seems to go through the tiny url server first thus causing google related keywords to not be read. ...
1
vote
1answer
44 views

get list of checked checkboxes through arraycontroller

i have an arraycontroller bound to the tableview. i need to return the number of checked checkoxes in the table. the arraycontroller is filled with nsmutabledictionaries. this is the code i have so ...
1
vote
2answers
111 views

Can't change value of BOOL from another class, IOS

I encounter a simple problem , I am trying to change the bool value of a class from another class but it is not happening, it returns NO. //before pushing other viewcontroller -(IBAction)editWOD { ...
3
votes
2answers
96 views

When does Objective-C implicitly cast to BOOL?

I read Mike Ash's Objective-C pitfalls page, and now I'm paranoid about implicitly casting variables of type id to BOOL. Assume I have a 'dangerous' pointer with the lower bits zeroed out, so that ...
-1
votes
2answers
93 views

Weird warning issue when assigning a value to a BOOL pointer

I'm developing an in iOS6 and using Xcode 4.5.2. I've a UIViewController,let's say its name is aViewController. In this UIViewController, i've a BOOL pointer declared as a property using this code. ...
0
votes
2answers
78 views

Value Stored to 'valid' is never read [closed]

I have a validation method by which I analyse whether a particular variable passes a validation criteria. Here's the code: -(BOOL)validateFields{ BOOL valid = FALSE; if (dateEntry != TRUE ...
1
vote
2answers
121 views

Why is BOOL type in Objective-C a char?

I have been told that BOOL in Objective-C is a typedef of an unsigned char and YES & NO keywords are encoded chars. This is not the first time I heard it. I have read that this is because Apple ...
0
votes
1answer
92 views

Boolean does not get set on the right moment

I have a BOOL loginStatus that I am going to use in a login flow. Code - (IBAction)login:(id)sender { if ([self credentialsValidated]) { [self ...
1
vote
1answer
69 views

Dealing with multiple BOOL combinations

Here is the scenario: In my app I'm syncing some data, whenever there is some error when syncing I flag this in a BOOL. When all syncing is complete I want to display sync feedback (errors) for the ...
0
votes
2answers
154 views

How do I change the value of BOOL?

How do I change the value of a BOOL in Objective-C? lightOn is the BOOL value I need help modifying. @synthesize button, view; -(IBAction)torchOn:(id)sender; { ...
4
votes
2answers
139 views

Does Xcode 4.5.2 automatically prefix synthesized BOOL getters with is

I just noticed that I had a BOOL declared as @property (nonatomic, assign) BOOL userAuthorized; and I was about to write my own getter for it and automatically Xcode autocompleted with - ...
9
votes
4answers
237 views

Do Apple templates contain a bug since they cast to BOOL?

According to Mike Ash's blog post casting to BOOL can fail 6% of the time since a pointer is larger than a BOOL. Because of this he recommends that if you are checking if an object exists you should ...
0
votes
1answer
86 views

Custom BOOL Getter/Setter?

In my iPhone app I have a BOOL named isAddressCell. Great this works fine, and I can call this: [cell setIsAddressCell:YES]; Without an issue. However, I have looked around at creating a custom ...
-1
votes
1answer
71 views

Are using of numericals in BOOLEAN names bad in Objective C [closed]

I am currently developing an app where a lot of BOOLEANs are declared in the interface (346 to be exact) so I decided to name the booleans like FOO123. They compile just fine but I was just wanting ...
0
votes
1answer
68 views

If statement in Objective C [closed]

I'm sure this is super simple but I just started using Objective C and I'm trying to compare a response with the answer of the object to see if the response is right but I keep getting a compiler ...
0
votes
0answers
379 views

NSNumber numberWithBool not an objective-c object

I'm need to store some bool values in NSMutableDictionary, so I've founded a solution: using a [NSNumber numberWithBool] to make an object from bool. It's work fine with value YES, but with NO it ...
0
votes
4answers
208 views

Comparing two BOOL values

In my instance method, would like to compare a BOOL parameter with the content of a static variable, for instance: - (NSArray*)myMethod:(NSString*)someString actualValuesOnly:(BOOL)actualValuesOnly { ...
1
vote
1answer
156 views

Set value of BOOL with checkbox at application startup?

Still pretty new to ObjectiveC and Cocoa here. Hopefully the answer to this question is straight forward but not painfully obvious. I've got a simple application that uses a couple text fields to ...
-1
votes
3answers
300 views

Trying and failing to use BOOL in iPhone app

I have the following method where I am trying to determine of someone is associated with a practice. Coming from C# this seemed like the right way to do this, but I'm getting some warnings/errors ...
0
votes
1answer
119 views

UIView.superView (BOOL) == Fail

I have a simple method that checks for the superview of a view, and returns a BOOL. However, intermittently the method fails to produce the right answer (or at least the answer Iʻm expecting). The ...
1
vote
2answers
240 views

If (BOOL) in Objective C: unused variable

In an implementation of a CGRect, I attempt this: BOOL didStartPressing = NO; if ( didStartPressing) {int nmax=5;} else{int nmax=500;} for (int n=1; n<nmax; n=n+1){ *... working code that draws ...
1
vote
2answers
238 views

Reverse Question Mark in Boolean Value IOS NSUserdefaults

I have an app with story board and navigation controller, I want to pop up a agreement view if user launches the app first time, in Appdelegate.m - (BOOL)application:(UIApplication *)application ...
0
votes
1answer
76 views

Bool value '\x06' instead of default value 'YES'

Execute the Sqlite library am caught a BOOL value as '\x06' instead of 'YES' after 4 or 5 steps BOOl value will be '\0'..what is the problem of this BOOL value? BOOL success;//success value is ...
2
votes
4answers
840 views

Declaring extern NSString causes linker error

This is ridiculous, im trying to create a sound bool to turn of in app sounds. I keep getting Undefined symbols for architecture i386: "_kPlaySoundPrefsKey", referenced from: -[AppDelegate ...
0
votes
2answers
397 views

how to pass in BOOL value from one view to another in objective c

I am currently working on an app where if the user clicks on a button, it will set that buttonPressed to "YES" and goes to a new view. In this new view, you can select the colors and once the colors ...
4
votes
4answers
123 views

Shorthand for all bools YES or all bools NO?

Often in my code I need to check whether the state of x amount of bools are all true OR all bools are false. So I do: BOOL first, second, third; if((first && second && third) || ...
0
votes
2answers
57 views

How to tell the difference between BOOL values in a dict: NO, nil, or doesn't exist

I'm using a conditional statement such as // isComplete is a BOOL value if (![videoDictionary valueForKey:@"isComplete"]) { // do important things here } The problem is that this statement ...
0
votes
6answers
358 views

how to print out bool in objective c

I have set a bool value for key TCshow in my NSUserDefault, I want to run a nslog test whether the key is saved or not, and i m trying to printout the bool value. here is my code but it s not working, ...
1
vote
2answers
179 views

Negate a Boolean stored in an NSNumber

I've got a managed object with an NSNumber that's just a Boolean value. When the user clicks a button I want to toggle that. self.item.completed = [NSNumber numberWithBool:![self.item.completed ...
0
votes
3answers
426 views

Xcode BOOL type: from input YES, I want to get value NO

I have a very simple method, but it does not work. Ultimately, from input YES, I want to get NO and reverse. -(void)myMethod:(BOOL)ys{ if (ys==YES) { myLabel.hidden=NO; ...
0
votes
2answers
75 views

What will take the boolean variables by default?

I know, boolean variables are NO by default. BOOL first; BOOL second; if (first != second) { NSLog(@"Yes"); }else{ NSLog(@"NO"); } The OutPut is :Yes But when i assign NO to first and second, ...
0
votes
3answers
167 views

stackoverflow when try to pass variable to bool function

i create a counting timer(on a label) and a variable that contain the label integer value(named count). also i create a function that check if my number is 7, divided by 7 or contain 7. when i try to ...
-1
votes
2answers
256 views

Using recursion in Objective-C

I tried to use recursion in C via Xcode. The code is a 7boom game that I should use it in my homework. I tried to use recursion but my Xcode is stack and shows an errors. Here is my code: #import ...
3
votes
5answers
617 views

In Objective-c, safe and good way to compare 2 BOOL values?

I want to compare 2 BOOL values in objective-c. I found out that (3)-(6) of the following code works. (1)-(2) doesn't work because BOOL is just signed char. (3) works and is very readable but I ...
1
vote
5answers
2k views

boolValue not converting the NSString to BOOL

I know this doubt could be silly mistake. I am getting a variable from JSON string, it will have the status 1 or 0. If I do using first method(Code 1) it works. But if I do the second method ...
0
votes
1answer
691 views

Update Boolean Value in plist dictionary

I am trying to update a boolean value in a plist dictionary in an iphone app. The plist dictionary contains several strings and two boolean values. Below is my current code. I first define the ...
1
vote
2answers
865 views

Objective-C: Returning int to BOOL method

I am new to Objective-C and i wonder why this method compiles, can anyone explain me why? Thank you -(BOOL) isEnabled{ return 56; }
0
votes
1answer
104 views

Conditional value (like while loop) as method parameter

So, I'm attempting to have a method that effectively does this: - (void)doWhile: (/*some magical type*/)condition { while (condition) { // do some magical things } } And while ...
2
votes
1answer
251 views

Why can't I update the boolean value of my core data entity's attribute?

This is really annoying me. In Objective-C, I have an Item entity with a boolean attribute Deleted. I would like to be able to set the value of Deleted to YES or 1. This is my code: NSFetchRequest ...
3
votes
1answer
541 views

How do I use pfquery in parse.com filtering on a boolean field in ios?

doing a query in an ios/objective c app against a Parse.com datasource how do I construct my PFQuery to filter on a boolean column? I have something like this; PFQuery *query = [PFQuery ...
2
votes
8answers
138 views

What does the ^ operator do to a BOOL?

What does this statement mean? isChecked = isChecked ^ 1; isChecked is a BOOL.
1
vote
1answer
207 views

Make Objective-C realize block return type

I have some Obj-C code in which I have a class with many blocks as members. The property in question is the following: @property(nonatomic, readonly, retain) BOOL(^truthPredicate)(int, ...
1
vote
2answers
117 views

Boolean is always false even if I impose true

I have a UIView where before I use UILongPressGestureRecognizer and then I use UIPanGestureRecognizer. To UIPanGestureRecognizer I get a message about the pressure of UILongPressGestureRecognizer but ...
2
votes
5answers
6k views

How do I create a BOOL instance variable in objective c?

I need to create an instance variable of type BOOL with a default value of False in one of my Objective-C classes. How do I do this? I've seen people define it in their .h file but I don't really ...

1 2 3