Skip to Content
Cocoa® Programming for Mac OS® X For Dummies®
book

Cocoa® Programming for Mac OS® X For Dummies®

by Erick Tejkowski
February 2009
Beginner
408 pages
7h 53m
English
For Dummies
Content preview from Cocoa® Programming for Mac OS® X For Dummies®

Chapter 10. Cocoa Data Types

In This Chapter

  • Using the NSNumber class

  • Working with an array

  • Understanding Cocoa's Boolean type

  • Finding out what day it is

One of the main tasks that computers do well is manipulate data. Whether you need to calculate the national debt or keep track of the telephone numbers of the players in your poker club, computer programs can ease the task of handling information. Cocoa improves upon the various ways that you work with data in C.

This chapter takes you on a tour of some data types unique to Cocoa. The Foundation Framework defines these data types. You can continue to use the data types that you know from C, but after you see what Cocoa has to offer, you just might stop thinking about those old C types altogether.

Working with Numbers

When you program in Objective-C, you can use all the usual standard C numerical data types for making calculations. If you want to use these values with Cocoa's array objects, however, you're left out in the cold. For this reason, Cocoa offers you the NSNumber class. One of its great uses is to wrap numbers in a Cocoa object, for use with other objects, such as NSArray. The NSArray class is an array class that comes with the Foundation Kit. You hear more about it later in this chapter.

To create an NSNumber object based on an integer value of 42, use code like this:

NSNumber *n = [NSNumber numberWithInt:42];

Here are methods for creating NSNumbers based on a variety of numerical types:

  • numberWithDouble

  • numberWithFloat

  • numberWithInt ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Learning Objective-C 2.0: A Hands-on Guide to Objective-C for Mac and iOS Developers, Second Edition

Learning Objective-C 2.0: A Hands-on Guide to Objective-C for Mac and iOS Developers, Second Edition

Robert Clair
Learning Cocoa with Objective-C, 2nd Edition

Learning Cocoa with Objective-C, 2nd Edition

Apple Computer Inc, James Duncan Davidson

Publisher Resources

ISBN: 9780470432891Purchase book