The Marionette CollectionView displays a Backbone collection object by rendering each objects through the specified childView View object.
Questions tagged [collectionview]
1294 questions
0
votes
1 answer
PSTCollectionview is not working for me?
I have one storyboard project in that i added PSTCollectionview classes and all files .Then i created one class for my viewcontroller "allbooks.h,.m in "PSUICollectionviewcontroller_" and iam not able to add this class on my viewcontroller ???…

Naveen
- 1,251
- 9
- 20
- 38
0
votes
1 answer
Collection View Not Visible in Simulator
I am extremely new at Xcode. I am building an app that has a collection view in it. It looks great in the storyboard view, but nothing shows up when I run the simulator. I have images and labels in the cells. I have created a subclass for the cells…
0
votes
1 answer
IOS to show downloaded image in Collection View
I have a problem with my downloaded pictures from my website.
My CollectionView shows image when it's already added to my project, but when I downloaded new images from a Pictures.plist file info. I have nothing.
I check before the download if the…

Eyalt
- 1
0
votes
2 answers
Accessing a variable in multiple methods
Still a bit new and I am having some issues I was hoping someone could help with. I am trying to load a JSON string coming from my server into a collectionview in iOS6
I can pull in the data using a fetchedData method called from the viewDidLoad…

Jeff Janes
- 885
- 1
- 8
- 22
0
votes
1 answer
Collection View Cell for iPhone
Is there any way to automatically assign a Collection View Cell's identifier? I have a few hundred cells that are all giving me the "cells must have reuse identifiers" warning and I don't want to go assign them each one by hand...

CSquid
- 25
- 6
0
votes
2 answers
Objective-C: How to load a different view on button tap?
I have an iPad application that has a button on one view. When I press the button I want it to load a second view. The second view I am trying to load is a CollectionView. I am not using, and do not want to use a UINavigationController.
Does…

tentmaking
- 2,076
- 4
- 30
- 53
0
votes
1 answer
Use a collection view in a popover iOS
I want to have a collection view in a popover. So first I set up my Collection view controller and my custom cell. When I start the program from here it works fine.
In another view controller I created a popover controller with the collection view…

Jim Craane
- 186
- 3
- 10
0
votes
1 answer
CollectionView Pull-to-Refresh Crashes
I have the following code for my pull-to-refresh "feature" (refreshing a CollectionView
UIRefreshControl *refreshControl = UIRefreshControl.alloc.init;
[refreshControl addTarget:self action:@selector(startRefresh:)
…

schnabler
- 687
- 7
- 23
0
votes
2 answers
How to load CollectionView without Storyboard
I'm new to iOS development. I need to use a CollectionView without using Storyboard and this view has to be load in a tab. Is this possible.
Thanks

Gayan
- 185
- 1
- 4
- 14
0
votes
1 answer
bind child control of a tabitem to another object
In my MVVM Application I have an object in my MainViewModel called Products;
I Also created a CollectionView to enable navigating in those Products. What i need is to show the CollectionView.CurrentPosition.
MainViewModel.cs
private…

lebhero
- 1,391
- 5
- 18
- 35
0
votes
1 answer
Create a keyboard using Ember JS with nested CollectionViews
EDIT: SOLVED, was accidentally creating instead of extending the ember view. See answer below.
I am creating a keyboard for a touchscreen device that does not have a native touchscreen keyboard in the browser (Google Chrome on an HP touchscreen,…

ianstarz
- 417
- 4
- 12
0
votes
1 answer
Getting a uicollectionview to start on the second cell
I have have a line based collection view, each cell takes up the whole screen. How do I get the collectionview to start on the second cell ? I am a noob to both collectionviews and iOS.
[ 0 ] | [ 1 ] | [ 2 ] | [ 3 ]
So you can only see one cell at a…

JakeTheBraek
- 261
- 1
- 5
- 12
0
votes
0 answers
Ember CollectionView - Removing an ItemView
I'm having a hard time finding an answer to this, so perhaps I'm doing it all wrong. I have a collection view with an item view class. Each item has a delete button, which refers to the action "removeItem." This does remove the item, but I need to…

mdbiscan
- 17
- 3
0
votes
1 answer
Collection View Cell Won't Allow Me to Select
This is probably a really easy fix; I have been reading countless forums and tutorials and can't seem to find answer.
In my app I have a popover collection view to select a specific option and return a value...
However it won't highlight or select?…

user1952602
- 1
- 1
- 2
0
votes
2 answers
Count Number of items in a collection
How to count items that are equal to a certain value and place it in a label ?
class Conversation
{
public string Id { get; set; }
public int Readen { get; set; }
public string Recipient { get; set; }
}
In Readen property, there are…

keno
- 93
- 3
- 11