Eslam Hamdy
Eslam Hamdy

Reputation: 7386

how to make a 9*9 grid view in Objective C under Xcode 4.3?

i have searched Xcode controls but doesn't found anything that makes a GridView like the one in the lecture below so, how to make a one like that? thanks A 9*9 gridView

Upvotes: 3

Views: 6631

Answers (3)

u10int
u10int

Reputation: 219

As @Stephen pointed out, there's AQGridView, but here are a few others I've looked at, each offering some different functionality based on what you're looking for: GMGridView, NRGridView, MMGridView

Upvotes: 2

Stephen Darlington
Stephen Darlington

Reputation: 52565

There is no such component built in to iOS. So you'll either need to write your own or look for an open source version. I'm aware of AQGridView; I'm sure there are others.

Upvotes: 1

Related Questions