Tagged Questions
-2
votes
1answer
35 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.
...
1
vote
1answer
70 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
45 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 ...
1
vote
4answers
135 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
3answers
68 views
BOOL logs fine on simulator, but on iPhone logs numbers like 96, -32, etc
I'm working on an app that displays randomly chosen haiku from a list that comes with the app. The user has the ability to mark a haiku as a "favorite" (and also to unmark it as such). Everything ...
0
votes
2answers
155 views
iOS return bool value in block
I am trying to return a bool value from a class method I call that has a block in it. I get the error, Incompatible block pointer types sending.... How would I get around this? I just want to know if ...
0
votes
1answer
88 views
NSUserDefaults BOOL logic
I have a quiz game, where when the answer was correct, a picture with tick sign will appear. As I have many fields and need the app to remember which are done already for next launch. I am using ...
0
votes
2answers
75 views
Updating a BOOL value from another class
I have setup a class with the following:
MESSidePanelViewControllerSubClass
Header file
@property BOOL setLandscapeOK;
Imp file
- (NSInteger)supportedInterfaceOrientations {
// Restriction for ...
0
votes
0answers
78 views
CheckedCell with CoreData BOOL
With the upgrade to IOS 6.1, checked cell functionality that was working is no longer...
When I click a cell, the log shows the record updating but the physical checkmark on the cell is not updating. ...
1
vote
2answers
108 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
{
...
-1
votes
2answers
90 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. ...
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
0answers
32 views
C ANSI Library project on solution subverting bool value
The most strange thing is happening in one of my XCode projects. I have a solution with 2 projects, one is a game kernel library written in C, and the other is a common cocos2D/Box2d universal project ...
4
votes
4answers
297 views
What values should I use for iOS boolean states?
It appears that in iOS I have a number of options that seem to fit for boolean values:
YES
NO
TRUE
FALSE
true
false
Which ones should I use? In this particular case I'm hiding a label, so should I ...
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
211 views
Button Set Selected via BOOL
Can someone please educate me why the following does not work? The button never gets set to selected.
[self.boldButton setSelected:isBold];
If I replace the above with an if else statement it works ...
0
votes
1answer
323 views
How do I get NSJSONSerialization to output a boolean as true or false?
I'm using NSJSONSerialization dataWithJSONObject to serialize my classes to JSON. When it serializes a BOOL, it gives it the value 1 or 0 in the JSON string. I need this to be true or false instead. ...
-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
4answers
200 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
votes
3answers
297 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
118 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
237 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 ...
2
votes
4answers
831 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
1answer
110 views
JSON feed returns boolean sometimes instead of an object. How to handle in iOS?
So basically I have a JSON feed that returns a boolean if there is no event but if there is an event it returns an object.
No event example:
{"event":false,"status":"success"}
Event example:
...
0
votes
1answer
2k views
How to succesfully use a BOOL in Xcode 4.3
So I just finished Stanford's iPhone lesson that uses AVFoundation. It was the class where the TA had us make an App that displayed video and then put sunglasses on the face with face recognition. ...
0
votes
1answer
67 views
How to move sprite continously between two object
I have 3 sprites A, B, and C.
A and C are objects...
B is Enemy sprites... so the design is below. I need B to move continously between A and C.
A----------B----------C
I use the below method in ...
1
vote
1answer
117 views
Xcode Core Data Attributes
I'm making an app and have a core data file with an entity and 15 boolean attributes. I want it so that when a user presses a button it changes the value of one of the attributes from "0" to "1" in ...
3
votes
3answers
194 views
What is the optimal size for a boolean variable
I have come to believe that the optimal size for a boolean variable is the natural width of the data, ie in C/C++ it is int. So for modern processors this is normally 32 bits. At the machine level ...
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 ...
1
vote
3answers
712 views
Want to invert BOOL value in iOS sdk
I am getting id values from plist in iOS sdk, if i am getting value 0 then I have to show it as 1 and vice versa.
Here is my code for the same
+(BOOL) removeButton {
id obj = [[[NSBundle ...
3
votes
1answer
537 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
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 ...
3
votes
2answers
565 views
ios objective C Bool not setting
im creating a custom UITextField, but is not setting a BOOL??
MyCustomTextField.h
#import <UIKit/UIKit.h>
@interface OMTextField : UIControl <UITextFieldDelegate>
{
UITextField ...
0
votes
1answer
382 views
iOS - Setting UISwitch on/off state on a Modal View Controller
I'm having problems setting the state of a UISwitch from a BOOL. This is probably simple, so if anybody could help I'd really appreciate it. Here is my code which doesn't work, but it might make it ...
0
votes
1answer
279 views
Initializing an array of bools - returning null
I'm having a lot of problems initializing an array of bools. When using the NSLog i keep getting (null). I'm trying to set up the mutable array piecesInPlace with 40 NO's. I've tried changing ...
-2
votes
3answers
219 views
Creating and looping through array of bools
I'm creating a jigsaw application. When each piece is touched, the idea is that a bool (droppedInPlace) is assigned YES if it is put in its correct place, and NO if it is dropped in the wrong place. I ...
-3
votes
1answer
336 views
objective-c - using a boolean value from one class in another class
I've looked around and couldn't find a distinct answer to this question. So I'm asking here. I have two classes. ClassA and ClassB. I have a bool value in ClassB. I have a method in ClassA where it is ...
0
votes
2answers
234 views
Changing a boolean in an NSMutableArray
So I'm trying to change all the booleans in an NSMutableArray that I made which I followed from here.
i have:
@property (nonatomic, retain) NSMutableArray *isDinosaurTapped;
and synthesized:
...
6
votes
2answers
6k views
How to set a boolean type property in objective C class
How to use a boolean property in objective C class, i did it like:
@property (nonatomic, copy) BOOL *locationUseBool;
but it gives error that:
Property with 'copy' attribute must be of object ...
0
votes
5answers
249 views
Store boolean value in UITableviewcell
How can I store a boolean value in each row of a UITableview. I need to retrieve the boolean value stored in the cell, when that particular cell is selected.
1
vote
2answers
542 views
boolForKey unrecognized selector error iOS
I am reading from a plist file into an array. When I iterate through the array I save each string it to its respective part of the data structure. When I get to the BOOL variable and try boolForKey to ...
-1
votes
1answer
77 views
BOOL prints as -65
I am trying to NSLog a BOOL in Objective-C. When I do, it prints either as 0, 7, or -65. This is my code:
BOOL testBool;
NSLog(@"testBool = %i", testBool);
I've also tried %d and casting it as an ...
0
votes
2answers
544 views
BOOL values not recognized on CoreData objects
I encountered a strange problem regarding CoreData and boolean values:
In my data model I have set an entity's property to BOOL. Later I set theEntity.theBooleanValue = [NSNumber numberWithBool:NO] ...
1
vote
3answers
397 views
How can i parse an NSString equation into a tree? Objective-C
I am trying to parse a Boolean equation that is currently in the form of an NSString.
I want to parse it into a tree so that I can manipulate and simplify the expression into its simplest form.
Like ...
0
votes
1answer
1k views
unable to save a bool variable using NSUserDefaults
I am using XCode4.2 and developing and iPhone App
I ususally save data using NSUserdefaults (mainly strings ... )
I usually write the following two lines to save the data :
...
2
votes
3answers
2k views
warning when using BOOL variable in objective-c
I am trying to initalize my BOOL variable to YES but its giving me this warning.. not quite sure what to do.. it still seems to be working fine but just wondering how I can get rid of the warning.
I ...
0
votes
1answer
324 views
How to Use BOOL in IBACTION IOS
i need to connect an imap email server with below given -(BOOL) method
how can i call this method in IBACTION when connect button clicked?
- (BOOL) connectToHost: (NSString*) hostname
{
socket_ ...
0
votes
1answer
266 views
Objective C: Boolean not working. Need outside opinion
When the user touches the screen, it looks at the boolean with an if and triggers a timer when value is NO. It sets it to YES so the user can't trigger it again when it's going. When the timer ...
0
votes
2answers
408 views
BOOL being reset to NO in init method
I want to show a Now Playing button in a UINavigationController's bar.
I have a class (NowPlayingManager) that I am using to keep track of whether an audio file is currently being played. I use a ...
4
votes
1answer
2k views
Understanding method returning BOOL by using !=
This is a rather basic question regarding the syntax of the return statement in the shouldAutoRotateToInterfaceOrientation method of a view controller.
In order to allow all views except for the ...

