An NSInteger is data type in Objective-C. Used to describe an integer.
0
votes
4answers
35 views
Nsinteger accesible issue
When i try to add nsinteger value into array it shows warning,
Incompatible pointer to integer conversion sending 'NSInteger *' (aka 'int *') to parameter of type 'NSInteger' (aka 'int'); dereference ...
0
votes
1answer
44 views
What is the default value of an NSUInteger in local scope? [duplicate]
Given the following snippet:
- (void)doSomething
{
NSUInteger count;
}
What is count? Is it guaranteed to be 0?
0
votes
2answers
57 views
Adding +1 to a variable on click of a button adding the wrong number
I am very new to Objective-c and probably really easy to solve but couldnt find an answer anywhere....
I am trying to add +1 to a variable every time the user clicks on the button but instead of ...
0
votes
1answer
30 views
Cocoa touch NSInteger plusing 4 not 1
I have this cocoa touch code where you press a button and a NSInteger adds its self with the number 1 and then a label turnes into the NSInteger value
This is the code
- (IBAction)out:(id)sender {
...
0
votes
1answer
46 views
Convert a CFNumberRef to NSInteger
#import "someClass.h"
@implementation someClass
- (NSInteger *)checkWakeOnLan {
SCDynamicStoreRef ds = SCDynamicStoreCreate(kCFAllocatorDefault, CFSTR("myapp"), NULL, NULL);
CFDictionaryRef ...
0
votes
2answers
83 views
Converting string to an integer in ios
I know this question has been asked many times. You can convert string to integer in this two ways:
[myString intValue] which returns a "C" type or [myString integerValue] which returns NSInteger.
...
1
vote
2answers
83 views
Objective C - Why 64bit means different variable types
I have heard that people use types such as NSInteger or CGFloat rather than int or float is because of something to do with 64bit systems. I still don't understand why that is necessary, even though I ...
0
votes
0answers
19 views
Facebook Graph handling the birthday and timezone with IOS
I am using IOS to connect to facebook graph and collect the users details, including the birthday.
I have turned logging on so I can see the response lets take the birthday information like this:
...
0
votes
2answers
30 views
How do I display an integer from an NSArray on a UILabel?
I realize this is a dumb beginner question, but I have been stuck for at least an hour on trying to get an integer value from my array to display on a label when I press a button. The problem is that ...
3
votes
1answer
59 views
Changing Parameter Type for Delegate Methods
I have a NSURL delegate method which takes in NSInteger as the parameter
- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten ...
0
votes
1answer
34 views
Assigning numerical value to objects in NSMutableArrary
I have an NSMutableArray of playing cards. For brevity, I'll just show the objects in the suit of clubs, but all 52 cards are present in this array.
deckOfCards = [[NSMutableArray alloc] ...
0
votes
1answer
46 views
Extracting error code from json response in IOS
{
ErrorCodes = (
12
);
Success=0;
}
I have json response like above and i am want to fetch 12 from error code so that i can display appropriate error message. I am doing like this
NSInteger ...
0
votes
2answers
103 views
Incopatible Pointer to integer conversion sending nsstring to parameter of type 'NSUIInteger'
i am getting this warning "Incopatible Pointer to integer conversion sending nsstring to parameter of type 'NSUIInteger' (aka unsigned Int)" in the below statement how to resolve this please guide ...
0
votes
1answer
32 views
XCode NSIntegerv return memory leak after analysis
I have this code which created with UITableView and making the cell's color show alternatively white and grey.
How can I correct this, without memory leak? Thanks!
-2
votes
4answers
77 views
Issue when retrieving an NSInteger from NSUserDefaults [closed]
I'm experiencing an issue when saving & retrieving an int from NSUserDefaults. I am saving to NSUserDefaults using the following code:
int globalRank = 1;
NSUserDefaults *submissionDefaults = ...
-5
votes
2answers
76 views
how to detect if NSInteger is between 10 and 20 [closed]
Hi I have tried multiple things combining knowledge of mine and the internet but I cannot find a way to check if an NSInteger is between 10 and 20.
Would it be something like this? (it didn't work)
...
0
votes
4answers
113 views
NSInteger value not valid when passing in a variable, for custom table view class delegate method
I'm testing a custom table view style class:
HorizontalTable
It produces a horizontal table view.
One of the delegate methods equivalent to tableView:numberOfRowsInSection: is:
- ...
0
votes
3answers
407 views
Convert NSInteger to Float and Vice -versa
I have basic doubt.I have to convert float minutes =( (10.09/60 ) % 60);
but error is invalid to binary expression(double to double).
how can I make this calculation easy..
What I am trying is ...
-2
votes
1answer
25 views
Storing an NSURL return as an integer/numerical value rather than an NSString
I am trying to return the contents of my NSURL request as an integer/numerical value rather than an NSString. I have had quite a bit of trouble with this. Does anyone know what the last line of code ...
0
votes
2answers
128 views
Turning an NSString to an Integer and checking whether it is less than or equal to a value
I have a project that returns a distance as an NSString. I want to check that distance to see if it is less or equal to, or more than 10,000 feet. I am running into an error that says "Implicit ...
0
votes
1answer
75 views
Does NSInteger allow for decimal places?
I need to have someone type in a value say "40" and then the app converts this to anther value by dividing by 7.5. at the moment i've done:
NSString *pCO2 = _pCO2.text;
float thepCO2 = [pCO2 ...
1
vote
3answers
265 views
Using multiple times appDelegate in the same UIViewController
I am new to objective-C and cocoa.
In my UIViewController I need to access AppDelegate multiple times in different methods
A. Is calling in every method:
AppDelegate *appDelegate = [[UIApplication ...
0
votes
1answer
214 views
NSMutableArray property initialization and updating
Suppose I have a @property that is an NSMutablearray that is to contain scores used by four objects. They will be initialized as zero and then updated during viewDidLoad and throughout operation of ...
0
votes
1answer
64 views
Increase or Decrease an Integer Within a NSString
My app is a simple blog app. I parse an XML, and build custom HTML code from the parsed parts, and load that HTML into a webview. Not everyone has the same quality of vision, so I am trying to add ...
0
votes
2answers
203 views
How do you check if an NSInteger is greater than another NSinteger?
I'm trying to write code that detects if an integer is greater than another integer. Is this possible?
Here is what i've done so far.
if (NumCorrect >> NumWrong) {
btnCool.title = @"Awww";
...
-3
votes
2answers
141 views
NSString with NSInteger [closed]
How can I put my NSInteger into my NSString stringWithFormat:
my code:
-(IBAction)main:(id)sender
{
NSAppleScript *script = [[NSAppleScript alloc] initWithSource:@"return the clipboard"];
...
1
vote
1answer
181 views
Transform NSInteger to NSString as a 5-digit number
I have an int and I transform it to a NSString like this:
NSString *myStr = [NSString stringWithFormat:@"%d",myInt];
myInt is ranged from 0 to 99999. What I want is to get myStr as a 5-digit ...
0
votes
5answers
322 views
Obtaining float from division between NSIntegers
I have two NSInteger variables called "domande" and "corrette". I have to execute this operation with them: corrette*10/domande. I want the result to be a float variable, so I declared a "voto" ...
1
vote
3answers
1k views
Bad Receiver type 'NSInteger' (aka 'int')
int thumbCount = [_totalThumbs thumbsViewNumberOfThumbs:self];
_totalThumbs is a NSInteger type property.
thumbsViewNumberOfThumbs is a method of type NSInteger.
I need to get the count in 'int' ...
0
votes
1answer
226 views
Json Data in int format
I am parsing json and the url is returning an integer value. (e.g. 278)
-(void) connectionDidFinishLoading: (NSURLConnection *) connection{
[UIApplication ...
1
vote
2answers
246 views
Set view's NSinteger property to NSInteger?
I'm trying to set a variable on a view that im getting ready to load. Heres the code for setting it:
NSInteger amountOfQuestions = [self.questions.text intValue];
Timer_ViewController *tvc = ...
2
votes
2answers
251 views
Convert NSInteger to bytes
I want construct a NSData object that contents 3 NSInteger type, and I do with follow codes:
- (void)test
{
NSInteger i = 12, j = 2000, k = 2;
NSMutableData *md = [NSMutableData ...
1
vote
3answers
37 views
'setInt' on another VC not working
I'm trying to set an Integer on another VC using prepareForSeguemethod. I've got four buttons and each button has its own boolean value changed when pressed
- ...
1
vote
2answers
104 views
sqlite sum() into nsinteger
I want to build a function which takes the sum of all rows in a column called hours. it should then return an integer value, which i am going to use to multiply with another number.
...
1
vote
1answer
377 views
FMDB databse and xcode inserting into database
Heyy
I am trying to insert data into a database but i have it seems like it wont insert integer values, it is inputing strings. the app just crashes.
if i bush the button that saves it into the ...
0
votes
4answers
178 views
Cocoa NSInteger when building in 64bit architecture
I have an NSSegmentedControl set up as a sender, adding functions when the user clicks through each button in the object. The snippet below always worked fine for me. It still does, however I'm ...
2
votes
3answers
2k views
sort NSInteger using sortUsingComparator
I am trying to sort an array of NSObjects (a object is of a class). The object class has several variables which I am wanting to use to sort the objects in the array, the variables I am using to sort ...
1
vote
1answer
59 views
integer declaration issue
I am struggling with bug in my program. and finally i got the point. here integer shows value 1 at the time of declaration. I clean and build again. but it shows 1 value?
please any one explain me ...
1
vote
3answers
274 views
is NSInteger a 32bit integer
Am I correct in thinking that declaring a NSInteger in an ios environment means it will only ever be a 32bit value?
I would like to know as I have been told by another programmer not familiar with ...
0
votes
1answer
57 views
How to add a number to an integer
I am trying to make a NSInteger being abel to contain a number while the app is runing and that I can add numbers to that NSInteger hers my code
// in the .h
NSInteger *count;
// in the .m
count = 0;
...
-2
votes
2answers
235 views
how to save an NSInteger in NSUserDefaults [closed]
I am trying to save an NSInteger (label) into NSUserDefaults but I have not found a way to do this is it even possibel
Saving the data
[[NSUserDefaults standardUserDefaults] setInteger:label ...
0
votes
4answers
530 views
NSInteger returning 0 if NSString is NULL
This could be the simplest one but I am not able to find the exact cause. Instead to explain in words following is my code:
NSString *str = @"";
NSInteger tempInteger = [str integerValue];
if ...
0
votes
1answer
74 views
iOS Label Text Based On Timed Function
I've been trying to create a script that sets a timer and reduces a value by 33 each time it runs. In theory the timer should stop itself after 6 runs, but it keeps going and reaches negative values. ...
1
vote
2answers
169 views
Make UIStepper increase increment by 5
Is there a way to make a UIStepper count by 5's rather than a single increment at a time? i.e, tap + and a label says 5, 10, 15, 20, etc. or subtract by 5 every time? So far I have tried value +5; and ...
-3
votes
1answer
52 views
What is the easiest way to keep track of scores?
I'm looking to have a system where it updates the score the user has if they get the answer right in a multiple choice question. I have an IBAction that runs when the user selects the right choice and ...
0
votes
6answers
891 views
How get the total sum of NSNumber's from a NSArray?
I have a large NSArray containing NSNumbers like 3, 4, 20, 10, 1, 100, etc...
How do I get the total sum of all these NSNumbers (3 + 4 + 20 + 10 + 1 + 100 + etc...) as one total NSInteger?
Thank ...
0
votes
1answer
393 views
Converting CFIndex to NSInteger
This question is similar to mine, but does not contain an answer. I want to convert a CFIndex into an NSInteger. I have checked the list of types that have toll-free bridging and this is not one of ...
-5
votes
5answers
1k views
What is the difference between primitive data type vs an object in objective-c or any other language? [closed]
What's the basic difference between the two..? it would be nice if can someone explain using the example of NSInteger and NSNumber.. Thanks
0
votes
3answers
531 views
Xcode iPhone SDK - Keep NSInteger zero at beginning
I want to keep the zero at the start of my NSInteger, but when i log it the zero is removed.
NSInteger myInteger = 05;
NSLog("%d", myInteger);
log: 5
I get "5" instead of "05", how can i keep ...
-2
votes
6answers
924 views
arc4random() % int
I want to have an random number from a NSInteger, like here:
NSInteger ri = 15;
for(int i = 0; i < ri; i++){
NSLog(@"%i", arc4random() % ri);
ri--;
}
But it returns a lot of values ...




