Tagged Questions
0
votes
0answers
17 views
Text color of Section Header in DialogViewController
Is it possible to change color of text for section header in DialogViewController?
I have tried many tricks but without result.
0
votes
1answer
50 views
Infinity Scroll and UITableView Data Reload
I'm implementing infinity scroll to load new data in my uitableview that is implemented like Contacts style in Apple embedded App.
My datasource is a IList and then i add new elements on it.
When ...
0
votes
2answers
82 views
Customize Grouped UITableView
I'm varely new with iOS and I'm working on a simple application that requires a grouped UITableView. I managed to setup the UITableView programatically and now I'm down to the styling part. This is a ...
0
votes
2answers
112 views
Monotouch iphone custom UITableView
I followed this tutorial in order to create a custom Cell.
I have created a custom cell in the Interface Builder that looks like that:
In my ViewController i have added a UITableView and bind it to ...
1
vote
1answer
181 views
How to add to static table in Xamarin iOS(Monotouch)
I am trying to add cells to a static table that I created using storyboard. I want to be able to add cell to one section of it dynamically from code, I implemented a custom UITableViewSource but it ...
0
votes
1answer
82 views
UITableView RowSelected not being called?
I have a UITableView and a subclassed UITableViewSource class:
table = new UITableView(window.Bounds);
table.Source = new CellSource();
public class CellSource : UITableViewSource
{
// etc etc
...
0
votes
3answers
172 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, ...
0
votes
1answer
91 views
Adding monotouch.Dialog as part of uiviewcontroller in monotouch iphone
I want to create a page like this:
My idea for bottom place is using monotouhc.Dialog by viewElement. But the question is this:
Is using monotouch for this the best way? or using tableview with ...
0
votes
2answers
157 views
UITableViewSource Cells Height Always 44 Points
I am writing a custom cell for my UITableView sourced from UITableViewSource. I have implemented the GetHeightForRow and have logged the result to make sure the height comes through correctly. The ...
1
vote
1answer
86 views
Set view backgroundcolor with MonoTouch.Dialog
since a couple of days I'm trying to set the background of a MonoTouch.Dialog to blue ...
I collect a lot of information while searching like this one How to set the background to transparent on a ...
1
vote
1answer
127 views
Drawing UIImage into UITableViewCell in Monotouch
So I'm giving MonoTouch a try, I want to fill a UITableView with custom objects, for the moment a simple rectangle. Here's the code where the table is drawn:
using System;
using System.Drawing;
...
0
votes
2answers
104 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
{
...
0
votes
2answers
175 views
How to autosize height of UITableView?
I have a UITableView with Style=Grouped (though there aren't any groupings, I just like the style that it produces). Usually this UITableView has 2 or 3 rows in it depending on the situation.
How ...
1
vote
1answer
150 views
Is it possible to use Monotouch.Dialog to create a custom list like this?
I just discovered Xamarin Studio and Monotouch.Dialog, and I've been doing a lot of research on custom table cells. So far I've been pretty successful experimenting with some of the features, but I'm ...
0
votes
0answers
38 views
Delegate UITableView Delegate to whole Parent View
I currently have a UIView that has some UITextFields as well as a UITableView as a subview.
How can i override the UITableView scroll feature in such way that when scrolling, even outside the table, ...
1
vote
1answer
224 views
How to access main UIViewController from UITableView RowSelect Event Monotouch?
I have a UITAbleView on my main ViewController. Tableview is subclasses as seen below. When a user selects a row I want to switch to a new view by calling a routine on the main ViewController. ...
0
votes
0answers
48 views
Inserting rows to UITableView causes NSInternalInconsistencyException
I am trying to add sections and rows to a rest view that contains only a tableview and 4 sections with one cell each.
public override void ViewDidAppear (bool animated)
{
InsertRows ();
}
void ...
1
vote
0answers
51 views
TableView shows two selected rows
I'm setting the selected row in code, the correct row is selected (highlighted). Then I tap on another row in the TableView and that row becomes selected, but the previous row remains highlighted. If ...
0
votes
1answer
165 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 ...
0
votes
1answer
128 views
Monodevelop row selected on tableviewsource causes null reference exception
public delegate bool SelectedValueForDropDown (string name);
public partial class BasicTableViewSource : UITableViewSource
{
public override void RowSelected(UITableView tableView, ...
1
vote
1answer
195 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
103 views
monotouch UITableView SectionIndexTitles brakes custom cell's background
I'm experiencing really strange issue with monotouch SectionIndex side panel. Basically after adding
public override string[] SectionIndexTitles (UITableView tableView)
to my table data source, I ...
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
85 views
Monotouch.Dialog: Adding Sections without “flying in” annimation
After a Root Element is made and displayed, I sometimes need to add a new section:
this.Root.Add(MyNewPopulatedsection);
The problem is that the new Section 'flys in' from the right in an ...
1
vote
2answers
91 views
Mono Profile vs XCode Instruments. Descripencies
I am profiling my app on an iPhone. I am creating a LOT of UIWebView and sticking them in a MonoTouch.Dialog Table (lets say 1000). I have a button that clears out the table section and disposes the ...
2
votes
1answer
115 views
Monotouch.Dialog: Automatic searching disabled when ScopeBar enabled
When I enable the ScopeBar and wire up the SelectedScopeButtonIndexChanged on a Monotouch.Dialog control, the automatic search feature that is enabled when you set EnabledSearch=true is disabled.
...
1
vote
1answer
107 views
Monotouch.Dialog: ScopeBar hidden by SectionHeader
Using MonoTouch.Dialog I add a simple table and add a ScopeBar:
this.Style = UITableViewStyle.Plain;
this.EnableSearch = true;
this.AutoHideSearch = false;
this.SearchPlaceholder ...
0
votes
1answer
279 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
1answer
186 views
MonoTouch UITableView PushViewController
I'm using an UITableView with the following setup:
normal mode: detail disclosure button
edit mode: disclosure indicator
If the table is in edit mode and I select the row, the ...
0
votes
1answer
73 views
Multiple Sections in one SectionIndexTitles
I have now a UITableView with multiple sections in it.
Only if I add a list with the start letters of the sections title (ABCDE etc) as SectionIndexTitles and the list is not yet filtered for double ...
3
votes
2answers
543 views
Lazy loading images of UITableView
I have a UITableView with different sections and every cell has a image on it.
Because the images are downloaded separate for each cell, I'm looking for a lazy loading solution.
On the iOS Developer ...
1
vote
3answers
298 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 ...
1
vote
1answer
97 views
UITableView Monotouch Levels
I have an UINavigationController with an UITableView in it. The TableView has 3 Levels.
How can i change an item in the first level list from the third level?
0
votes
1answer
228 views
TableView.DeselectRow not triggering Deselected event for custom Element
I may be missing something here, however, I can't get the Deselect event to trigger on my custom Element class when I manually deselect a row. I am overriding the cell to do some custom drawing and I ...
0
votes
0answers
511 views
Event Handling UITableViewSource for iOS with Monotouch
I'm trying to capture and handle an event when an element of a UITableViewSource is clicked.
Here's my code:
public class TableViewSource : UITableViewSource
{
public event ...
2
votes
1answer
169 views
Alternating row colors in UITableView
How do I get alternating row colors in a UITableView using monotouch?
I am currently populating my TableView using this:
public partial class myViewController : UITableViewController
{
...
0
votes
3answers
290 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 ...
2
votes
1answer
594 views
Creating UITable with section using Mono touch and slodge mvvmcross
I am trying to create a UItable with sections using mono touch and slodge mvvmcross. However I am having some issues.
In my data I have a range of sections with 1-2 elements and my tablesource have a ...
2
votes
1answer
192 views
How can I fix the scrolling with EntryElement in custom sized MonoTouch Dialog?
I have done something very similar to this question. I have created a MonoTouch DialogViewController which has a bunch of EntryElements in it used to capture information for a user registering. I then ...
0
votes
1answer
162 views
MonoTouch UITableViewController with xib
In MonoTouch, I have a utility class called say "MyTableViewController" that derives from UITableViewController and implements a bunch of useful tableview controllery related stuff. It works fine if ...
0
votes
2answers
417 views
Adding margin to top of DialogViewController.TableView in MonoTouch.Dialog
I have a MonoTouch.Dialog DialogViewController which adds a custom UIView to the NavigationItem.Views object.
The UIView has a height of 25, and it's frame is set as follows:
Frame = new ...
1
vote
1answer
733 views
Show a UIPopoverController from a DetailDisclosureButton that is added by setting the Cell.Accessory
I have a UITableView that I use in the same way demonstrated in this tutorial at Xamarin.
Per the instructions in the sample, I set the cell.Accessory to a DetailDisclosureButton in the GetCell ...
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
1answer
749 views
Setting background to GroupTableViewBackgroundColor
I have a UIViewController in my Monotouch iPhone application and I want to set the background to what you have in a UITableViewStyle.Grouped. However when I use the code below it returns a black ...
3
votes
1answer
278 views
MonoTouch.Dialog UITableView without margins
How can I create UITableView with MonoTouch.Dialog which has no margins?
At the moment once you create new Section it will add margins around the table and makes elements rounded. I want the look of ...
1
vote
1answer
189 views
iOS6 device only. UITableView disappears off screen when making a call to sqlite and returning from a UINavigation
My iPhone app (developed using c# and monotouch) has worked fine on iOS5. Since the upgrade to iOS6, I am experiencing the following problem: (NOTE: only occurs on device, not simulator)
My first ...
2
votes
1answer
116 views
Does MonoTouch.Dialog support an (alphabetic) index?
With UITableView one can add a quick navigation (like in contacts on iOS) on the right side. Does MT.Dialog also support this? How?
0
votes
1answer
142 views
UITableview inside a uiNavaigationcontroller inside a UITabView with XIB
Excuse the complete monotouch noob.
I have a main Tab controller that is the basis for the app, when I navigate to one of the tabs I need is uinavigationcontroller with a uitableview inside it.
...
1
vote
2answers
952 views
Issue with event handler in monotouch button
I have customized my table view cell accessory with button. Everything went fine until event handler.
Here is my code.
[EDIT]
public class ProductTableSource: UITableViewSource
{
...
1
vote
1answer
237 views
How to implement an editable UITableView, similar to Safari Bookmarks?
I am trying to implement a list that works very much like the Bookmarks view in Mobile Safari. When you click Edit, you get the following:
From this screen, you can delete an item and change its ...
