Questions tagged [aqgridview]

AQGridView is an attempt to create something similar to NSCollectionView on the iPhone

AQGridView is an attempt to create something similar to NSCollectionView on the iPhone. If CALayoutManager were available on the iPhone, specifically the CAConstraintLayoutManager, then this would be relatively easy to put together. However, since none of those exist, there’s a lot of work to be done.

AQGridView is based around the programming model of UITableView and its associated classes. To create this class I looked long and hard at how UITableView does what it does, and attempted to replicate it as closely as possible. This means that if you are familiar with table view programming on the iPhone or iPad, you will find AQGridView simple to pick up.

project URL

https://github.com/AlanQuatermain/AQGridView

77 questions
1
vote
3 answers

grid-like control for iPad

Is there any grid-like control in iPad SDK?
adrin
  • 3,738
  • 8
  • 40
  • 60
1
vote
1 answer

AQGridView EXC_BAD_ACCESS _basicHitTest:withEvent:

Problem When a user touches a cell, the app crashes due to an EXC_BAD_ACCESS error. This has been crashing the app for some time (perhaps since iOS 8, 7 or even 6) Crash The crash is occuring inside AQGridView.m here: return ( (UIView *)imp(self,…
Jono Tho'ra
  • 1,476
  • 3
  • 18
  • 28
1
vote
1 answer

Getting lag while scrolling AQGridView items

i have AQGridView view with 45 items in GridView (12 rows), problem occurs when I scroll the view and grid gets laggy when new row is created. I am thinking about creating the whole rows once and using it from cache or something, without asking to…
Ignas S
  • 85
  • 1
  • 8
1
vote
1 answer

Add a view to the bottom in AQGridView in iOS

I'm using AQGridView to show a grid image, now I want to load more data -> finish. But I want to insert UIActivityIndicatorView when scrolling to the bottom of AQGridView and I don't know how to achieve this. Can anyone suggest me a solution?
BlueSky
  • 139
  • 3
  • 9
1
vote
2 answers

How can I Delete Cell in AQGridView?

I am using AQGridView to show images in GridView. Now i have to Delete The Cell which is added in GridView. In table View We can delete Each Cell usingcommitEditingStyle is there any Method In AQGridView Framework. Or Please give me any Alternate…
Vijay
  • 579
  • 1
  • 11
  • 22
1
vote
0 answers

AQGridView: no padding on outside, only inside

I have a 768px-wide grid view, with cells that are 240 wide. This means that I get 3 columns, with 8 pixels of padding on the left and right of each. This is similar to this situation: AQGridView: How to adjust UIGridViewCell margin. Instead of…
Kevin Renskers
  • 5,156
  • 4
  • 47
  • 95
1
vote
1 answer

IOS- viewheaderInSection in AQGridView

I insert a part 2 in AQGridView like this url image. If you see the url image, now i'm working ok everything data in AQGridView, When i scroll down AQGridView i wanna part 1: Image will scroll scroll to part 2: part2 will stop and if you still…
heaven
  • 221
  • 4
  • 19
1
vote
1 answer

IOS- load two AQGridView in UIViewControler

now i load one AQGridView in UIViewController, its working good, but i want load one more AQGridView, i dont know how, somebody help me, thanks you for read this article
TrungVu
  • 43
  • 1
  • 4
1
vote
0 answers

Using grid view in iOS with pinch to zoom

I am creating an application that will load images in a grid format. The user will be able to see a grid of images and pinch to zoom in the image area. I have looked at AQGridView but I am unsure as to whether or not it supports pinch to zoom.
user1641732
  • 71
  • 1
  • 2
  • 7
1
vote
2 answers

Loading camera roll images in iOS GridView very slow

I am showing all the images from the camera roll in my iPhone app. I build an array of ALAsset * that contains the list of all images in the camera roll when the app starts. I form cells by loading these images in a image view: // Get the full…
Pulkit Goyal
  • 5,604
  • 1
  • 32
  • 50
1
vote
1 answer

AQGridView Select Cell

I create a custom AQGridViewCell like so: - (AQGridViewCell *) gridView: (AQGridView *) aGridView cellForItemAtIndex: (NSUInteger) index { static NSString * PlainCellIdentifier = @"PlainCellIdentifier"; GridViewCell * cell = (GridViewCell…
mkral
  • 4,065
  • 4
  • 28
  • 53
1
vote
1 answer

How to Filter Cells in AQGridView with UISearchBar

i'm going crazy on this problem: I'm using AQGridView for show some image from an array that i retrieve from SQLite but i'm not able to filter the Grid with a UISearchBar that i put in the TitleView of a Detail zone in a SplitViewController. Can u…
Firegab
  • 313
  • 1
  • 9
0
votes
1 answer

exc_bad_access with GridView, possible memory management fail?

I have the following code that tries to set up a GridView and I have a GridviewController subclass that manages the datasource. This is the code that is used to set it up. AQGridView* gridView = [[AQGridView alloc] initWithFrame:frame]; …
nubela
  • 1
  • 24
  • 75
  • 123
0
votes
1 answer

delaying in loading images in the AQGridView in Objective-C

In my app, I have a root view which is a gridview. I am loading an images in the gridview cells.I am having problem with the loading images. As soon as I launch the app, there will be blank cells with out images after a second the images are loading…
jessy
  • 491
  • 3
  • 7
  • 19
0
votes
1 answer

NSComparisonResult Returning Wrong Array

I have an instance of AQGridView laid out in a Pages-esque manner for the iPad. At the top of the grid, I've inserted a UIView with a UISearchbar. Instead of calling on a UISearchDisplayController, I've decided to take a page out of iBooks'…
CodaFi
  • 43,043
  • 8
  • 107
  • 153