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 (iOS7) Understanding Views and View Controllers CGRect and Frame

Why a struct?

Why are the size and origin variables structs and not arrays? Would they ever need anything besides an int or maybe a float? Is there any benefit in using struct vs array if you know its only going to be one type?

Thx

2 Answers

Andrew Shook
Andrew Shook
31,709 Points

I'm not sure of the exact reason, but I do know that in C arrays can not store two different datatype ( thats why they made structs which are similar in structure but can hold different data types). I would guess that the struct in question here is probably storing numbers but of different types, i.e. floats and ints.

Thanks!