Questions tagged [collectionview]

The Marionette CollectionView displays a Backbone collection object by rendering each objects through the specified childView View object.

Docs

1294 questions
0
votes
1 answer

How to select collection view cell to zoom in image with swift?

I'm building an app display photo as grid with collection view in Swift I'm using two storyboards, one with collectionview for photo grid. one storyboard for zoom in photo. And what i want when click on 1 photo to zoom in and can swipe left - right…
TomSawyer
  • 3,711
  • 6
  • 44
  • 79
0
votes
1 answer

Accessing SearchBar in CollectionView Header Cell - Swift

At the moment I have a simple UICollectionReusableView Class implemented on the CollectionView header cell: class SearchBarCollectionReusableView: UICollectionReusableView { @IBOutlet weak var searchBar:UISearchBar! @IBOutlet weak var…
Fudgey
  • 3,793
  • 7
  • 32
  • 53
0
votes
3 answers

collectionview just filling one cell

I'm trying to fill a collectionview with data from an array which I've checked it has the data, but at runtime it's filling just the cell at index 0. The collectionview is a list of friends in pages of 9 items showing photo and name. The number of…
cmacera
  • 1,140
  • 1
  • 10
  • 21
0
votes
1 answer

Best method to set a single view selected (others should be unselected)

So what i'm trying to do is the following: i have an collectionlistview of
  • item
  • itemviews. Now the method i use is when i click on item it handles the click in the itemview and adds the class selected, and i use…
    0
    votes
    1 answer

    Show Data of CollectionView On Start

    so I am using a collection view to show an image from my Parse server. When that image is clicked I have two labels on the bottom of the page that show more information (also from the server). The only problem is that these labels are not included…
    Nicholas
    • 149
    • 1
    • 13
    0
    votes
    1 answer

    what is this mobile app control called?

    I'm starting to see more iOS app (Etsy, Lootsy, etc.) using this control to navigate through categories. I"m thinking about implementing it in iOS where I can switch between collection views. Anyone know what this is called and if there is a…
    0
    votes
    3 answers

    How to get an ObservableCollection list item which inside another ObservableCollection list?

    I have a class PlayerVM.cs, that has a property: public ObservableCollection PlayLists { get { return _playLists; } set { _playLists = value; } } PlaylistVM.cs also has its own collection: public…
    bart
    • 304
    • 1
    • 3
    • 13
    0
    votes
    1 answer

    xaml: How to bind CollectionViewSource to a collection of local-instance of class?

    I have a class named Tasks.cs: namespace Player_beta.ViewModels { public class Tasks : ICollectionView { private ICollectionView _customerView; public ICollectionView Customers { get { return…
    bart
    • 304
    • 1
    • 3
    • 13
    0
    votes
    1 answer

    UICollectionView didSelectItemAtIndexPath Scrolling

    I am using a CollectionView to display an image in. I am using horizontal scrolling with pagination enabled so the user is able to scroll from image to image right to left as they would on the apps screen on iOS. How might I be able to call…
    Nicholas
    • 149
    • 1
    • 13
    0
    votes
    1 answer

    ios storyboard duplicated CollectionView cellForItemAtIndexPath not called

    Things I want to do Duplicate a CollectionView From ControllerA to ControllerB in storyboard Things I have done Duplicate(CMD+D) CollectionView From ControllerA(which works fine) Drag Drop to ControllerB retarget(ctrl + drag) dataSource and delegate…
    Vontio
    • 191
    • 4
    • 12
    0
    votes
    0 answers

    ICollectionView not applying SortDescription

    This is a WPF MVVM-light app. A quick note: UserList, used in the GetDefaultView, is an ObservableCollection I have a collection view that is built like so: private ICollectionView _iCollectionUserList { get; set; } public ICollectionView…
    JTester
    • 463
    • 1
    • 8
    • 19
    0
    votes
    1 answer

    Delete CollectionViewCell

    I'm deleting a CollectionViewCell with this code: - (void)deleteProjects:(NSNotification *)notification { // Get the current project NSString *currentProject = [[MyManager sharedManager] projectForDeletion]; [_objects…
    0
    votes
    1 answer

    Save all images in UICollectionView as one image

    I am creating picture masked app for iOS. In my app, I listed all modified pics in collection view as thumbnail(that cells are custom). And I want to save all items(that items are be custom cells in collectionView) in collectionView as 1 image . Is…
    Antiokhos
    • 2,944
    • 5
    • 23
    • 32
    0
    votes
    2 answers

    How to send an Image name from a collection view to another View Controller in Swift?

    This might end up being a really simple thing but I've been pondering over it for half and hour. I have an Image View on a View Controller. From there I Modal to a Collection View with Images. I want to select an image from the Collection View and…
    GgnDpSingh
    • 1,737
    • 2
    • 12
    • 11
    0
    votes
    1 answer

    A lot of images in tableView

    I have tableView with collectionView inside. I have ~500+ images in collectionView. Firstly I use paths and load images in collectionView from paths from collectionView:cellForItemAtIndexPath: . But it was slow and I begin to fill collectionView…