Tagged Questions
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
58 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.
...
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 ...
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 ...
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
2answers
396 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 ...
0
votes
6answers
356 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, ...
3
votes
5answers
605 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 ...
0
votes
0answers
169 views
SOAP service using sudzc only returns boolean 'true' on iPhone?
I am using http://sudzc.com/ to implement SOAP service call on my iPhone app. the service was written for Login details, which is supposed to return the value true or false according to the login. ...
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 ...
1
vote
3answers
118 views
Boolean comparison of an enum
Just wondering - given that I have a typedef enum 'color' (and property of the same name) with a valid element 'blue', why is this ok:
BOOL isBlue;
if (color == blue){
isBlue = YES;
}
...
0
votes
1answer
123 views
How to add boolean string to plist with theos tweak?
Well i need to create a tweak that adds for example boolean string test in /var/mobile/test.plist in dict dictionary with
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 ...
3
votes
1answer
1k views
How to use static variable(BOOL) in Objective C
I am from C# background, and I am having a hard time in figuring out about how to use a static variable(BOOL in my case) in Objective C.
My questions are:
Where should I declare my static variable. ...
-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
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.
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 ...
1
vote
2answers
150 views
Can't set a BOOL to yes
I've ran into this problem and so far I can't find any answers. so a have a BOOL property and I am trying to set it to YES/TRUE/true ( I have tried them all) but whenever I check the BOOL it always ...
4
votes
2answers
797 views
iPhone - Different Default Boolean Value on Device
I've recently had a bit of code work perfectly on the simulator, and screw up on device. Why? - It's very simple, but I can't explain the explantion.
I did a little testing, by creating a new ...
0
votes
2answers
155 views
call a method one time from another method which have a CADisplayLink on it
I would like to call from a method 'method1' another method 'method2'. The problem is that there is a CADisplayLink on 'method1' and when I want to call 'method2' from 'method1' it call it at 6Ofps so ...
0
votes
2answers
369 views
setting BOOL in viewcontroller from appdelegate
I've defined a BOOL into my header's AppDelegate.
AppDelegate.h
BOOL myBool;
@property(nonatomic) BOOL myBool;
and synthesize it
@synthesize myBool;
How I'm able to set his value (true or ...
0
votes
1answer
368 views
Use boolean to check state of application objective c
I don't know is question is well-formed. So i have an uialertview shown at start application for 30 seconds. In this uialertview there is a button "ok" on which user can click and release alert. if ...
0
votes
3answers
292 views
Why is my BOOL crashing the app?
My app is crashing when I set my BOOL to true.
VC1:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
MyViewController *upcomingViewController = ...
1
vote
1answer
73 views
How to Fetch only Some Objects Matching a Bool Attribute
Every time I fetch objects from the database I get all objects. Now, I have to fetch and show in a table view only some of the objects stored in the database.
To do this, I've thought to add a new ...
2
votes
3answers
1k views
Proper way to convert BOOL value into INT?
Everytime when I tried to convert BOOL value into int. INT value is showing -8 for True and 0 for False. Ideally it should return 1 for true.
I have tried all possible ways of conversion like
int ...
0
votes
1answer
214 views
iPhone NSXML Parser for a Boolean Value
I am working on determining if an event is live by reading from an XML file http://www.calvaryccm.com/ServiceTimes.asmx/IsServiceTime.
It returns a boolean result, but I cannot figure out how to ...
2
votes
1answer
1k views
How to output bool value to console in Objective C iPhone
For an object it is
NSLog(@"some object %@", someObject);
For decimal it is:
NSLog(@"some object %d", 2.33);
What is it for a bool?
-1
votes
1answer
163 views
Boolean question in Cocos2d
I am making a game in Cocos2d. I have enemies in the game. I want them to shoot at the character. Currently, I have a boolean that says
buffDude.shoot = YES
when it is done moving. And in the Enemy ...
1
vote
2answers
1k views
iPhone UISwitch react with another UISwitch
I've read all about UISwitches already but I cannot seem to figure them out in my situation.
I have 2 UISwitches. In order for my code to work only one of them can be ON. How would I accomplish this?
...
0
votes
3answers
698 views
access UISwitch setting from a different view?
k, I'm new to this so apologies all around, generally.
I'm trying to access the UISwitch value (on or off) from a different view and class and can't make it work.
It's a simple 2 view app. Main view ...
0
votes
1answer
61 views
Cannot figure out what simple thing I am doing wrong with this CoreData object
I have a CoreData object called "User". This object has a property declared with @property (nonatomic, retain) NSNumber * isloggedin; in User.h and in User.m I have @dynamic isloggedin;
In my ...
3
votes
3answers
2k views
iPhone - Core Data Bool Values?
I have a BOOL in my core data.
I want the value to be null unless i set it to either YES, or NO.
Is it possible to do this?
in my code how can i check to see if the value has not been set yet or not?
...
29
votes
3answers
10k views
How to use a boolean in NSUserDefaults
When the root view controller of my application is loaded, I want to be able to check whether or not the users login credentials have been saved to NSUserDefaults.
Basically, when the user loads the ...
1
vote
1answer
645 views
NSUserDefaults BOOL returning (null)
I'm trying to pull an NSUserDefaults value from a Settings.bundle into my application. When I load up the NSUserDefaults on application load, though, an NSLog reveals that my BOOL value returns ...
8
votes
3answers
9k views
NSPredicate - filtering values based on a BOOLEAN stored value
I have a core data model object called Entry.
In this I have an attribute IsFavorite.
I would like to use an NSPredicate to filter the results of my NSFetchedResultsController.
Currently I am ...
2
votes
1answer
585 views
Switch Off iPhone Screen
I am looking for a way to turn off the iPhone screen without the iPhone going to sleep. I don't really mind if turning the screen off is against apple rules. Would setting window alpha to 0 do the ...
0
votes
2answers
2k views
objective c arrays of floats and booleans possible?
NSArray chemConstantArray = [[NSArray alloc] initWithObjects:0.0021400, 0.0012840, 0.0010700, nil];
Gives me four errors:
Incompatible type for argument 1 of 'initWithObjects:'
Invalid initializer
...
23
votes
3answers
14k views
iPhone: Save boolean into Core Data
I have set up one of my core data attributes as a Boolean. Now, I need to set it, but XCode keeps telling me that it may not respond to setUseGPS.
[ride setUseGPS: useGPS.on];
What is the method ...
0
votes
1answer
877 views
How to check a bool setting in my iphone app
I have a setting in Root.plist with Key = 'latestNews' of type PSToggleSwitchSpecifier and DefaultValue as a boolean that is checked. If I understand that correctly, it should = YES when I pull it in ...
0
votes
1answer
2k views
IPhone sdk stop the accelerometer from working when something happens
I am using the accelerometer to move a few UIImageViews around the screen, at the moment the accelerometer only works when a NSTimer is at 0, this is fine. I would also like to make the accelerometer ...
0
votes
2answers
910 views
IPHONE SDK, How to put Void function into my BOOL??? PLEASE!
I am using the IPhone's Accelerometer to make a object move. I want to be able to make this function work and not work depending on different states.
I have my code for my Accelerometer function and ...
2
votes
2answers
1k views
How do I call a static bool method in main.m
This is Objective-C, in Xcode for the iPhone.
I have a method in main.m:
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
//I want to call the method ...
4
votes
3answers
6k views
Synthesize a BOOL to set value in Objective C
I have created a BOOL attribute in my Core Data entity called "useSystem". Additionally in order for me to get/set the data I have created an object, however whenever I try to set the synthesized BOOL ...
0
votes
3answers
533 views
How would I save and retrieve a boolean into a file using NSData
I want to save a boolean into a file and also I want to know how you would retrieve it again. I mainly want to use this for when the iPhone terminates and finishes launching in their respected ...
3
votes
3answers
6k views
Best way to handle persistent Boolean in plist?
What's the best way to handle Boolean values that derive from a UISwitch setting, and are stored in an NSMutableDictionary that is saved to the user's directory as persistent settings? Specifically, ...
0
votes
2answers
760 views
Objective C - access BOOL ivar of void pointer to self
I have a thing that uses a SystemSoundID to play a sound, and then repeat with a C function being used as the sound completion callback, and the function is passed (void *)self (since it has to be a ...
1
vote
2answers
1k views
Core Data mishandles NSCFBoolean?
I've got a Core Data managed object that has an attribute with a "Boolean" type.
In my header file I've got this:
@property (nonatomic, retain) NSNumber * includeInHistory;
and I'm using a @dynamic ...
10
votes
2answers
9k views
error: property 'myBoolVariableName' with 'retain' attribute must be of object type
I have a BOOL value inside my @interface definition in my .h file. Here it is below. It has the same problem whether it's a pointer or not.
@interface myCustomViewController : UIViewController ...
0
votes
4answers
351 views
Best way to use my singleton
I started to develop my singleton class but I have a problem.
What I want to do is have a search objects containing the values of the search form that I could use in several views.
I want to have the ...