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
0
votes
2 answers

GridView in iPhone

I am working on an iPhone application in which I have to design a GridView, I have searched on google + stackoverflow and found that one possible solution is AQGridView, I have tried it but all of its examples are not working in XCode 4.1. The error…
TilalHusain
  • 1,006
  • 5
  • 17
  • 36
0
votes
1 answer

AQGridView demo application can not work in xcode 4 and ios 4.3

I'm trying to develop an AQGridView in iPhone. I downloaded the .zip file of AQGridView from GitHub social coding site. The example application of AQGridView (ImageDemo, SpringBoard, ExpanderDemo) can't be run in Xcode 4 and iOS SDK 4.3. At compile…
John
  • 734
  • 3
  • 14
  • 30
0
votes
1 answer

combine AQGridView with HJCache

I am trying to combine AQGridView with HJCache. However, separately, both works fine. but i combine them together, it seems that they 're not compatible with each other. Any one done this before? Can i have a hint?
Larry
  • 2,172
  • 2
  • 14
  • 20
0
votes
1 answer

NSString In AQGridViewCell

I have an AQGridView set up to display the files in the documents directory along with 4 other documents that are predefined and loaded into the table at startup. I need to know how I can set the cell to hold the URL of the document (yes, even the…
CodaFi
  • 43,043
  • 8
  • 107
  • 153
0
votes
1 answer

Scroll to selected textField with AQGridView (similar to tableView)

I'm trying to create a simple note block application. I'm using AQGridView to display note blocks in a grid. Every note block have a editable UITextField property in a custom subclass of AQGridViewCell (similar to TableViewCell). And I have some…
Anders
  • 2,903
  • 7
  • 58
  • 114
0
votes
2 answers

AQGridView iOS Create custom icons (image+label) instead of image

I've just started using AQGridView from Alan Quatermain more specifically, the SpringBoard demo.. The demo shows icons/tiles that consist of a UIImageView. I'd like to know how to use a custom UIView instead so that I can have an icon with…
jim
  • 8,670
  • 15
  • 78
  • 149
0
votes
2 answers

AQGridView: CellChoser

I implemented AQGridView, and works Fine, but when I select an cell, she disappears. I think this is related with method "cellChooser" What is the function of CellChoser? - (void) cellChooser: (MagazineCell *) chooser selectedItemAtIndex:…
Fernando Aureliano
  • 894
  • 12
  • 35
0
votes
2 answers

Assigning to property with 'readonly' atribute not allowed

I' doing the implementation of AQGridView, and everything was going well. But, now I'm getting the error below. - (AQGridViewCell *) gridView: (AQGridView *)inGridView cellForItemAtIndex: (NSUInteger) index; { MagazineCell *cell = (MagazineCell…
Fernando Aureliano
  • 894
  • 12
  • 35
0
votes
1 answer

AQGridView problem when i modify the fetchRequest's predicate

I'm trying to change the fetchRequest's predicate on my NSFetchedResultsController, but when i try to reload the data from the aqgridview, none cell is displayed. My code: [NSFetchedResultsController deleteCacheWithName: nil]; NSPredicate…
0
votes
3 answers

Prevent a cell from being reused in AQGridView

I am using AQGridView for a grid of images.I need to overlay a progress bar over a particular image which is being downloaded. The problem is, if I scroll that Image cell out of view, the progress bar appears on another cell as well. I think this is…
Shreesh
  • 677
  • 5
  • 15
0
votes
1 answer

(iphone) aqgridview question. how to make shelf?

I'm using aqgridview to create a book-shelf like UI. I can place image and title for image fine (with the ImageDemo example provided in aqgridview). I want to place 'shelf' image where the image title is. (as in…
eugene
  • 39,839
  • 68
  • 255
  • 489
0
votes
3 answers

Using TTImageView with AQGridView

I created a custom AQGridViewCell. By using UIImageView everything works. The image appears and is clickable, but when I change the UIImageView to TTImageView I can't click on the image. The same example as here below by just changing the imageview…
Trausti Thor
  • 3,722
  • 31
  • 41
0
votes
1 answer

AQGridView: Making a Selection

I am using AQGridView to build an iPad app that incorporates a flexible grid like that found in the Apple iBooks app or the Marvel and DC Comics apps. My question is has anyone used AQGridView and can help me with sheding some light on how to make a…
Leachy Peachy
  • 1,112
  • 2
  • 17
  • 29
0
votes
1 answer

aqgridview works in simulator but fail to work on the device

I'm currently working on a legacy code a few years ago which uses aqgridview instead of the default uicollectionview. The weird problem is everything works fine in the simulator regardless of the type of the simulator, but when I deploy it to iPad,…
photosynthesis
  • 2,632
  • 7
  • 29
  • 45
0
votes
1 answer

Creating a grid view to view contents of camera roll in a view

I am trying to create a custom way for the user to select items from their camera roll, a bit like instagram does in their app. When the user presses the select from camera roll button, I would like the grid with all of the images to slide up over…
matthew
  • 467
  • 8
  • 23