Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Simple iPhone App with Swift Creating a Data Model Finishing Up Our Model

Omotayo Olawepo
Omotayo Olawepo
2,803 Points

What does Ui32 mean and what does it do

What does Ui32 mean and what does it do

Richard Lu
Richard Lu
20,185 Points

Hey Omotayo, do you mean UInt32?

1 Answer

Hello. I think, with Ui32 you mean UInt32. UInt32 describes an Unsigned Integer which is 32Bit long. Instead of Int 32 which is signed the UInt32 has NO Negative Values and it can represent Values from 0 to 4294967295. (2^32).

The Difference between Both is that Int32 can represent Values between -2147483648 and 2147483647

Hope this helps.

Greets Thorsten