Tagged Questions
0
votes
1answer
53 views
UITableViewCell from Cocoa Touch to Monotouch
I'd like to use one of this two controls that are written in Objective C
https://github.com/runmad/RMSwipeTableViewCell
https://github.com/alikaragoz/MCSwipeTableViewCell
There are some way to use ...
0
votes
1answer
92 views
Label in custom cell is null when populating UITableViewController
I'm using Xamarin.iOS to build an iOS app. I'm using a storyboard and have created a UITableViewController with a grouped table using custom cells. The cell contains a label to which I want to assign ...
0
votes
1answer
46 views
Custom UITableViewCell, GetCell throws UnknownNSKeyException
I have created a custom UITableViewController, Cell and Source in my project. The Controller and the Cell were originally created as an iPhone UIViewController template so that I got the partial class ...
0
votes
2answers
70 views
Remove IUTableView Separator Using Custom TableCell in MonoDevelop
Ok, I can't for the life of me figure out how to remove the separator or set the background color for a custom UITableCell using MonoDevelop. I'm sure that I'm setting some value somewhere that is ...
1
vote
1answer
41 views
How can I fix this “Selector invoked … on a managed object … that has been GC'ed” from nib with unused custom UITableViewCell inside?
I have a sample project in which I am creating a stock table view, which will eventually use a series of custom table view cells. The nib for the table view contains the view with a custom controller ...
0
votes
0answers
71 views
Please help…Is it possible to create and use custom prototype table cells in xamarin ios using storyboard?
Is it possible to create and use 'Custom' prototype table cells in xamarin ios (monotouch) using storyboard?
After a few days of searching and experiments I could only find this by Stuart Lodge ...
0
votes
2answers
155 views
Monotouch custom UITableViewCell GetCell not initialising new custom view cells
I've been foloowing a number of tutorials to put together a custom table view cell using storyboard for a prototype table view.
I'm new to monotouch and managed to get a working solution for standard ...
1
vote
1answer
63 views
MonoTouch: UITableViewCell change height after UIImageView is added
Hi I have the following problem:
I achieved to add a CustomUIImageView to a a CustomTableViewCell.
In the draw method of the CustomUIImageView I shrink it to the width of the incoming rect which is ...
0
votes
3answers
175 views
Xamarin/MonoTouch UITableView cache
I have a UITableView which I'm filling with images and labels. In my source class I create a UILabel for each cell:
public override UITableViewCell GetCell (UITableView tableView, ...
2
votes
1answer
127 views
UIImage with rounded corner on left side monotouch iphone
I want to create a cell for my tableview like this image:
As you can see, in this cell I have a UIImage that have some cornerradius on its left side. I use this code for add cornerradius to my ...
2
votes
1answer
107 views
Figuring out how to get rid of border around cell in UITableView cell
I recently had help getting to the properties available on a cell by overriding the GetCell method using monotouch.dialog. My problem now is that I can't see to get rid of the default border around ...
0
votes
2answers
106 views
Monotouch UITableviewCells never destroyed
I have a controller which has a UITableView named WaitTableView. It has only one cell, here is the code of the TableViewCell class :
public class TableViewWaitCell : UITableViewCell
{
...
1
vote
4answers
593 views
Does anybody know a good tutorial for Xamarin MonoTouch customized UITableViewCell?
I have been looking around for a good tutorial for it but I have had no success. The documentation/tutorial on their website is really confusing and does not say how to hook up things in interface ...
0
votes
1answer
241 views
Create Custom Table cell with monodevelop and Xcode 4
I want to create a custom table cell for my iPhone application by Monodevelop and xcode 4 based on monotouch. I found this articles:
...
0
votes
1answer
167 views
Reference of prototype cells from IB
I am doing iOS project with storyboards in MonoTouch.
I have the custom class of UITableView (myCustomTableFoo) and specified the prototype cells of this class in IB. Then I want to instance this ...
1
vote
1answer
201 views
mvvmcross databinding help required
Trying to learn about mvvmcross and xib editor - I have followed example code from
http://slodge.blogspot.co.uk/2013/01/uitableviewcell-using-xib-editor.html
and incorporated some within my code.
...
0
votes
1answer
94 views
Monotouch UITableViewCell DetailView
How can I implement an UITableViewCell with the chosen option on the right side.
It should look like this at the end:
0
votes
1answer
281 views
Monotouch: Force UITableView to recalculate height of each cell without reloading data
I have a custom cell created using OwnerDrawnElement with autoresizeable UITextView in it.
When text changed there should be appropriate layout redraw and cell height recalculation.
The problem is how ...
0
votes
2answers
207 views
Clicking a SegmentedControl to UITableViewCell in Monotouch causes SIGABRT
In my Monotouch application for the iPhone, I'm trying to add a segmented controller to a UITableViewCell to act as a toggle for a value in each row. Everything displays correctly, and the first rows ...
0
votes
1answer
138 views
Monotouch - Layout Table View Cell where a group of buttons align right
I have a table view cell with a label to the left and three buttons to the right. I want the buttons to stick to the right of the cell when the UI is on an iPad - atm it looks like they are set for ...
1
vote
3answers
301 views
How do I change the colour of the DetailTextLabel using Monotouch?
I seem to be unable to change the colour of the DetailTextLabel in a UITableView.
I can change the font and size but not the colour. Here is my code:
public override UITableViewCell GetCell ...
2
votes
1answer
66 views
Bind MvxBindableTableViewCell's Accessory to boolean
I'm stuck on how to bind the MvxBindableTableViewCell's accessory to a boolean.
I have the table's ItemsSource bound to a list in my ViewModel, showing a nice list of clickable items.
However I ...
0
votes
3answers
295 views
Handle button click inside UITableViewCell
I can't seem to handle a button click properly inside a custom UITableViewCell. It's a cell that contains a label and a button. I have the following code:
var cell = tableView.DequeueReusableCell ...
0
votes
0answers
308 views
Tweetbot like dropdown cell UITableView in monotouch
Tweetbot like dropdown cell UITableView in monotouch
http://stackoverflow.com/a/9228538/1591907
1
vote
0answers
102 views
Monotouch custom UITableViewCell key value coding error
Evaluating Monotouch for our project and getting this error:
MonoTouch.Foundation.MonoTouchException: Objective-C exception thrown. Name: NSUnknownKeyException Reason: [ ...
0
votes
1answer
426 views
how to add a uipickerview as a sub view in a uitableviewcell using monotouch?
I have implemented a grid-looking structure (say 5 rows and 10
columns) for an iPad. I have done this by adding many UITextFileds(by
creating Frames) as subviews(each cell being editable, just like ...
0
votes
1answer
372 views
Custom Element in MonoTouch.Dialog: StyledMultilineElement top aligned, with UIWebView
Would like to ask some advice on how to approach custom Element design.
My design calls for a UITableViewCell which contains the usual text label, detail text label and custom AccessoryView you'd ...
1
vote
1answer
646 views
drawing grids in a UITableViewCell using Monotouch
Hi I am just a week old with Monotouch, the task that I have in hand is to display a table on an ipad with multiple rows and multiple columns i.e. a grid like structure with many cells and each cell ...
1
vote
2answers
413 views
MonoTouch Custom UITableViewCell AccessoryView is Null
I created a custom UITableViewCell in a MonoTouch app I am building. Inside the cell I am succesfully setting:
Accessory = UITableViewCellAccessory.DisclosureIndicator;
However when I attempt to ...
2
votes
1answer
176 views
Change location of EditingAccessoryView in Custom cell
I'd like to move the location of the EditingAccessoryView in my cell. I've tried the following with no success:
UIActivityIndicatorView activityIndicator = new ...
1
vote
1answer
454 views
DequeueReusableCell in Monotouch causes cells to rearrange when scrolling
I am using the Monotouch.Dialog class to populate a UITableView. I am using a custom cell and as you can see the code in the Element that gets the cell is as follows:
public override UITableViewCell ...
1
vote
0answers
288 views
MonoTouch.Dialog: Setting Disclosure Indicator Clear in OwnerDrawnElement
I have a custom OwnerDrawnElement where I override the GetCell to add a Disclosure Indicator, but it is not transparent. How do I make the DisclosureIndicator transparent so that the look for the cell ...
1
vote
1answer
637 views
Adding an interactive view to a MonoTouch.Dialog UITableViewCell
I'm trying to customise the BubbleCell sample in Xamarin's MonoTouch samples set. I want to add a UIImageView into the chat bubbles, and make it so when the UIImageView is tapped, the code can do ...
1
vote
1answer
226 views
Reusing UITableViewCell doesn't work
I'm using MonoTouch and I have a custom cell view which is not getting reused.
I have tried setting the IBUIReuseIdentifier
I have tried using string and NSString for the _cellId type
I have tried ...
2
votes
2answers
1k views
Storyboards: How to add outlets to a prototype UITableViewCell?
I have added prototype cell in one of the controllers that is part of the storyboard I'm designing. It has various labels, buttons, bells and whistles.
But how do I know create outlets to that cell's ...
2
votes
2answers
877 views
Custom UITableViewCell Button and RowSelected (iOS/Monotouch)
I have a 'Load More' UIButton inside a custom UITableViewCell. My table also uses a Delegate. I want to reload the table data when this button is clicked. I have noticed that when I click the button, ...
0
votes
0answers
182 views
Moving Cell/Row from one UITableView to another
Is it possible in monotouch to move/drag one cell of a UITableView to another with database connected into it?
The scenario is like selling an item that instead of clicking the cell i will move/drag ...
4
votes
1answer
441 views
Understanding the creation of custom UITableCellView - loading from Nibs in MonoTouch
I've used this tutorial several times: http://www.alexyork.net/blog/2011/07/18/creating-custom-uitableviewcells-with-monotouch-the-correct-way/
But there's a section of code in it that I don't ...
1
vote
1answer
670 views
How to make a custom UITableViewCell using Monotouch?
I'm trying to make a custom UITableViewCell as I need to have specific control over what information is shown in each row of the table. I need to show a bit more information that the standard ...
0
votes
1answer
304 views
Enter data to a custom UITableViewCell
I created a custom UITableViewCell (I created a class that extends UITableViewCell) and I created a xib file that contains my custom cell).Everything is working great but I have the following problem. ...
0
votes
0answers
437 views
Creating custom UITableViewCell
I having a problem to create a custom UITableViewCell from a nib file. I used the following two tutorials: alex york's tutorial and infoQ's tutorial.
My app crashes when the NSBundle is called.
var ...
1
vote
1answer
811 views
Random “Could not load NIB in bundle” in UITableView
I have a MonoTouch application that seems to throw an exception randomly on the device:
Jan 19 11:54:31 unknown UIKitApplication:com.mycompany.myapp[0xbab7][552]
<Notice>: ...
1
vote
3answers
1k views
Monotouch Custom UITableViewCell xCode4
How can I create a custom UITableViewCell using Monotouch/Xamarin and xCode4?
I ran across this description ...
2
votes
1answer
3k views
Monotouch: UITableViewCell height
I've been surfing the net to figure out how make my tablecell height fitt its content (my content is of different height).
I've tried to look at this sample ....
...
1
vote
1answer
526 views
UITableViewRowAnimation as a block (instead of a row) animation
Is there anyway to make a UITableViewRowAnimation animate at the same time?
Such as, If I'm adding 4 rows to a TableView, animate the block of 4 rows rather than animating both row individually?
...
3
votes
1answer
1k views
Monotouch.Dialog Customizing cells
I wanna customize cells in MonoTouch.Dialog.
For example make custom background in BoolElement and make custom image for this small bool thing that can be on or off, sorry forgot the name, or make ...
1
vote
3answers
365 views
Custom UITableViewCell that has a style looking very much like UITableViewCellStyleValue2
I'd like to create a UITableViewCell with two "TextLabels" in blue text on the left, and two "DetailTextLabels" in black on the right, as similar in style to UITableViewCellStyleValue2 as possible.
...
2
votes
3answers
405 views
UITableViewCell unique identifier?
I'm looking for a way to uniquely identify instances of UITableViewCells even after they have been recycled (dequeued) via DequeueReusableCell(string identifier) - without subclassing or using a ...
0
votes
4answers
4k views
Bounce type animation. When you apply it to the same property
If I want to animate UITableViewCell so it would bounce from left to right a few times, How can I do that? I'm trying that:
var bounds = activeCell.Bounds;
var originalLocation = bounds.Location;
var ...
0
votes
3answers
331 views
UITableView artifact when created in code
I create a UITableView in code using the following:
// no xib
tableView = new UITableView(
new RectangleF(0,0, this.View.Frame.Width, this.View.Frame.Height),
UITableViewStyle.Grouped);
...

