Tagged Questions
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: