The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
26 views

How to add textfields on uicollection view?

i am doing a project ,where i have to show a view like this i tried to use table view ,but i was unable to implement ,after that i have decided to implement this with the help of collection view.but ...
0
votes
0answers
21 views

Reference position in CollectionView IOS

Problem with reference position in CollectionView I made a simplified example of my problem. I'm using storyboard with a CollectionView, but then I leave that view and return the elements out of ...
0
votes
0answers
7 views

xcode view collection cell wrong size

I have a custom collection cell nib that has the size w:160 h:146. When i populate my collection view, all the elements are extremely small, like 20px * 20px. Why does it decrease the size of my ...
0
votes
0answers
16 views

WPF sort/order converted groupitems

in WPF, you can group in a listbox/listview The data object calls MyClass and has following properties: ID, ParentID, Name this is the code for filling in the collectionview: collection1 = new ...
0
votes
0answers
20 views

IOS CollectionView Cell with animated label

I'm new to IOS SDK and I'm having a problem with a CollectionView. It has custom Cells containing an Image and a label. I want the label to be refreshed every second with a new text. The data source ...
0
votes
1answer
29 views

CollectionView fails to render with empty collection

Why won't my Marionette CollectionView work with an empty collection? I'm trying to render a CollectionView within a CompositeView (it's a list of tasks within each item of a list of projects). ...
0
votes
1answer
39 views

listview row content getting duplicated in android widget

I have a collection view widget i.e a listview to show data fetched from DB. I have implemented the getViewAt(int position) method in RemoteViewsServiceFactory. This method is getting called as per ...
0
votes
1answer
52 views

New to Reactive Extensions (Rx), trying to run a CollectionView.Refresh() in a different thread. How?

I have a fairly large amount of data, and binding ListViews, DataGrids with CollectionView, and using OnFilter event to filter the CollectionView. So when loading data for CollectionView and also ...
0
votes
1answer
33 views

Play audio when uicollectionviewcell is clicked in iOS

I want to play mp3 file file when user select a collection view custom cell. but it is not playing . here is the code i have written for this purpose -(void)collectionView:(UICollectionView ...
0
votes
1answer
17 views

Event on didSelctItemAtIndexPath when this is into header - iOS

I was building a app on iOS, and in a collectionView I have a header, and needs create event "touch up inside" for this header, like i 've create in the others cells of the collectioView ...
0
votes
0answers
35 views

WPF Paging implement crash when selection is changed

I am using the following code for a wpf DataGrid: How can I paginate a WPF DataGrid? The paging works fine except that when i move to any page besides the first one and try to pick (press) any ...
0
votes
0answers
25 views

Add UIActivityIndicator PSUICollectionViewFlowLayout

I'm using PSUICollectionViewFlowLayout and I want to load an image from network. May I know how can I add a UIActivityIndicator to each cell before each image loads? Here's my current code for ...
-3
votes
1answer
194 views

PSTCollectionview is not working for me? [closed]

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 ...
0
votes
1answer
43 views

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 ...
1
vote
0answers
55 views

Multiple CollectionViews inside a Scrollview

I am trying to create a horizontal scroller which starts with a collectionview (group1), when scrolling reaches the end of group1, I need another collectionview to page into view, and so on. I am ...
0
votes
0answers
22 views

How to query a database using CollectionView's own filtering support?

I'm learning WPF for one of our projects. The software we are writing generally connects to databases with thousands of records. Let's say I am using a ListView for showing these records, but I don't ...
0
votes
1answer
86 views

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 ...
0
votes
1answer
94 views

Own CollectionView for paging, sorting and filtering

I've implemented my own CollectionView to bind a collection of data to a DataGrid in WPF. The main goal was the pagination, which is working quite well. I've written the following C# code: public ...
0
votes
2answers
34 views

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 ...
1
vote
2answers
262 views

Marionette CollectionView with one unique ItemView

Is there a way I can create a single unique view within a Marionette CollectionView? I mean something like this: CollectionView StartView (this is the unique view) Regular ItemView Regular ItemView ...
0
votes
1answer
166 views

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 ...
1
vote
1answer
37 views

contentOffset skips values in Log

So i have the following code: int actualPosition = self.collectionView.contentOffset.y; NSLog(@"%i", actualPosition); The output is: 2013-03-28 15:36:42.737 test[10544:907] 484 2013-03-28 ...
0
votes
2answers
92 views

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 ...
0
votes
1answer
175 views

Use a collection view in a popover iOS [closed]

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 ...
0
votes
1answer
77 views

Load images from a documents subdirectory into UICollectionViewCell

I have several images in png format in "/Documents/saved/" directory. I loaded this directory into an array called "contents" When i use NSLog to view the contents of this array, i see the images as ...
0
votes
1answer
91 views

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 ...
2
votes
1answer
139 views

Emberjs - Using CollectionView and ItemController together

I have a model Category that has many Documents. When rendering an individual Category I want to list all the the child documents in a drag and drop sortable list. I also want double clicking on any ...
-1
votes
3answers
1k views

How to insert Cell in UICollectionVIew Programatically?

I have a UICollectionView and works fine, But I want to add few cell items programmatically into the collection view. So how can I achieve this? To further clarify: when I say programmatically I ...
0
votes
0answers
61 views

userInteractionEnabled = NO and stil receive gesture

In my storyboard I have a collectionView with custom UICollectionViewCell class containing a custom UIView. The collectionView has a tap gesture, my goal is to enable/disable the tap if specific rule ...
3
votes
2answers
140 views

UICollectionView responding while being scrolled?

I have a UICollectionView filled with some cells, and i implemented the method - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath This works ...
0
votes
2answers
156 views

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
0
votes
1answer
368 views

Backbone.Marionette CollectionView template 'undefined'

I've been working off of Brian Mann's BackboneRails screencast, so my application structure is totally consistent with those. The following defines the 'show' portion of a the HomepageApp Marionette ...
-1
votes
2answers
80 views

Tracking touch in iOS

I am creating a word search game for the iPhone and am having trouble figuring out what is the best approach to take for the main component of the game (the word search puzzle). I am currently using ...
0
votes
0answers
70 views

passbook collectionview flowlayout

I am trying to develop an app which has an interface like Passbook. Passbook is using collection view, how to set the collectionviewflowlayout to get similar style.
0
votes
0answers
46 views

collection view is not working in view controller class

I'm using collection view in storyboard in which i'm using a view controller having tabbar. In that i want collection view which is showing blank images. here is my code: In viewdidload: { ...
1
vote
1answer
133 views

Popover with CollectionView on IOS

I was wondering if there was anyway to use Popover's box when i click an item in a collection View ? Thanks !
1
vote
1answer
182 views

UICollectionView Scroll perticular column horizontally

I am using a UIColectionView in my app. I am using line layout that scroll column horizontally. I have multiple columns. I want columns that goes out of screen to be scrollable horizontally. I have ...
1
vote
1answer
590 views

Embedding a UIContainerView as a portion of screen in a UIViewController

I have a screen in my storyboard where I would like to embed a container view into a portion of the screen. I can't figure out if I should add a new containerview or view from the object library and ...
0
votes
1answer
82 views

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 ...
1
vote
3answers
269 views

How to embed a CollectionView in a TableView?

I've put a UICollectionView in the header of my table, but when I test it all I see is a black rectangle where my collection should be. What do I have to do to be able to see it? I did some research ...
1
vote
1answer
1k views

iOS UICollectionView prototype cell size property ignored

I'm using a UICollectionView with two prototype cells. The prototype cells have different widths and contain different controls (image view and web view). I'm definitely returning the correct ...
2
votes
1answer
92 views

Issue while change property of item in ListView while filtering

I have a list of items that can be filtered. The Item class has a property IsChecked. Sometimes, if I change this property (in Runtime via a Checkbox) while the list is filtered, it does not change it ...
1
vote
1answer
375 views

WPF with UI threading issues - TaskFactory, CollectionView issues - syntax nightmare

See bottom of post for my pseudo solution. Once again I'm completely and utterly stuck on this. I've burned hours trying to understand - and yes I can get a single collectionviewsource to work ...
0
votes
1answer
157 views

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
votes
1answer
766 views

objective-c collectionview does not load data

somehow my collectionView does not load my data. I fetch data from facebook and call reloadData after the array is populated, but nothing happens... No Cell's are displayed, as the array is 0 when ...
0
votes
0answers
244 views

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 ...
0
votes
1answer
298 views

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

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 ...
0
votes
1answer
136 views

wpf datagrid resort bug

I am stuck here for 3 weeks now, I am dying :-) When I refresh my collection, the SortDescription does not work. This is a know bug in wpf I read on the internet. But I can't seem to get it ...
0
votes
0answers
317 views

wpf datagrid refresh groups/sorting collectionview

I want to refresh my datagrid, but after refreshing, my sorting within the groups are not correct anymore... <XmlDataProvider x:Key="SmsData" XPath="/response/conv/"> ...

1 2 3