Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6622149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:22:10+00:00 2026-05-25T21:22:10+00:00

so I need to divide on variable by a number. How can I do

  • 0

so I need to divide on variable by a number.
How can I do this?
I know about the C functions of DIV and MOD, but do not know how to use them in objective-C/cocoa-touch.
Heres an example of my code.

// hide the previous view
scrollView.hidden = YES;

//add the new view
scrollViewTwo.hidden = NO;

NSUInteger across;
int i;
NSUInteger *arrayCount;
// I need to take arrayCount divided by three and get the remainder

When I try to use / or % I get the error
“Invalid operands to binary expression (‘NSUInteger and int)
Thanks for any help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:22:10+00:00Added an answer on May 25, 2026 at 9:22 pm

    Firstly, should arrayCount really be a pointer?

    Anyway, if arrayCount should be a pointer, you just need to dereference it…

    NSInteger arrayCountValue = *arrayCount;
    

    … and use the operators / (for division) and % (for getting the module):

    NSInteger quotient = arrayCountValue / 3;
    NSInteger rest = arrayCountValue % 3;
    

    You can do it without the auxiliary variable too:

    NSInteger quotient = *arrayCount / 3;
    NSInteger rest = *arrayCount % 3;
    

    And just remove the dereference operator * if arrayCount is not a pointer:

    NSInteger quotient = arrayCount / 3;
    NSInteger rest = arrayCount % 3;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The code below works as intended, but it's not quite what I need. I
I'm working on a micro-controller without hardware multiply and divide. I need to cook
need ask you about some help. I have web app running in Net 2.0.
Need some help about with Memcache. I have created a class and want to
This is related to consistent hashing and while I conceptually understand what I need
I am trying to parse /etc/network/interfaces config file in Ubuntu so I need divide
I do not have formal CS training, so bear with me. I need to
I have a few local variables and I want to divide them all divide
So I am pulling information from google calendar and I need to divide the
I have two integer variables which I need to divide in order to work

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.