[MonoTouch] PDF Text selection

2012-07-04 Thread René Ruppert
Hi, I have noticed that since iOS 5.1 (?) it is possible to select text and objects when viewing a PDF using QLPreviewController (just open a PDF from an email). So I'm wondering if the API to do this is now exposed for public use? Does anybody know? For a while I've been looking for a way to a

[MonoTouch] What is the "Crash Reporting" option in Monodevelop?

2012-07-04 Thread René Ruppert
Hi, just seen it: there is a "Crash Reporting" option in (new?) MonoDevelop. It wants a 40 char hex code. Unfortunately everything is greyed out and disabled. What is this reporting about? René ___ MonoTouch mailing list MonoTouch@lists.ximian.com http:

Re: [MonoTouch] What is the "Crash Reporting" option in Monodevelop?

2012-07-04 Thread Mikkel Lønow
Hi, It has already been discussed: http://monotouch.2284126.n4.nabble.com/Crash-reporting-td4655645.html It's currently a pre-release feature, but it works very well with MD 3.0.3.3. Awesome work, guys! :) Mikkel On Wed, Jul 4, 2012 at 10:22 AM, René Ruppert wrote: > Hi, > > just seen it: ther

Re: [MonoTouch] What is the "Crash Reporting" option in Monodevelop?

2012-07-04 Thread René Ruppert
Oh well. Thanks then! 2012/7/4 Mikkel Lønow > Hi, > > It has already been discussed: > http://monotouch.2284126.n4.nabble.com/Crash-reporting-td4655645.html > > It's currently a pre-release feature, but it works very well with MD > 3.0.3.3. Awesome work, guys! :) > > Mikkel > > On Wed, Jul 4, 20

[MonoTouch] MonoDevelop has crashed and now the "Solution" pane is empty

2012-07-04 Thread René Ruppert
Hi, my MonoDevelop 3.0.3 has crashed and now the solutions panel is empty (for all projects, so it is not a corrupt SLN file). I can see the classes, but the folder hierarchy is just a grey box. Any ideas? René ___ MonoTouch mailing list MonoTouch@lists

[MonoTouch] Subversion no longer working after MonoDevelop crash

2012-07-04 Thread René Ruppert
Hi, as I write my MD crashed and no longer showed the solution. I fixed this. After killing MD another time, the solution view has come back. But now SVN no longer works: MonoDevelop.VersionControl.Subversion.SubversionException: Working copy '/Users/rene/Documents/Develop/Projects/XXX/210/XXX' l

[MonoTouch] Changing custom MTD Element layout on rotation

2012-07-04 Thread Andre Dobroskok
Hi, I have a custom Monotouch Dialog element which holds image. It is set center inside the element using following code in my GetCell() method: -- RectangleF parentFrame = UIScreen.MainScreen.Bounds;  _imageView = new UIImageView(GetImageFrame(parentFrame.Width)) {Image = Scaled

Re: [MonoTouch] MonoDevelop has crashed and now the "Solution" pane is empty

2012-07-04 Thread Rolf Bjarne Kvinge
Hi, MonoDevelop's preferences are stored in ~/Library/Preferences/MonoDevelop-3.0/ (for MonoDevelop 3.0) - try moving that directory elsewhere (remember to close MonoDevelop first) to see if that helps. Rolf On Wed, Jul 4, 2012 at 10:46 AM, René Ruppert wrote: > Hi, > > my MonoDevelop 3.0.3 has

Re: [MonoTouch] Subversion no longer working after MonoDevelop crash

2012-07-04 Thread Rolf Bjarne Kvinge
Hi, I believe a "svn cleanup" in the svn repository will do it (I don't know if you can do this from within MonoDevelop). If that doesn't work there are other ideas here: http://stackoverflow.com/questions/127932/svn-working-copy-xxx-locked-and-cleanup-failed Rolf On Wed, Jul 4, 2012 at 11:15 A

Re: [MonoTouch] Changing custom MTD Element layout on rotation

2012-07-04 Thread Nic Wise
(not infront of my mac, so can't check this, but) You should be able to hook into the dialogviewcontroller's rotation events (or inherit from it?) and call ReloadData, which should trigger a refresh. There is also an AutoRotate property. If you have a custom cell, you may be able to override

[MonoTouch] Pull down to refresh in MTD

2012-07-04 Thread Andre Dobroskok
Hi All, I am trying to use "pull down to refresh" feature in my custom DialogViewController, however when I pull down I get spinning gear and word "Loading" instead of flipping arrow. Am I missing something?     Cheers, Andre___ MonoTouch mailing list

Re: [MonoTouch] Pull down to refresh in MTD

2012-07-04 Thread Nic Wise
Hi I use pull to refresh on London Bike App https://github.com/nicwise/londonbikeapp I hook into RefreshRequested: RefreshRequested += delegate { //do some stuff, then call ReloadComplete(); };

[MonoTouch] Side Navigation (a la "Path" and "Facebook")

2012-07-04 Thread Phil Cockfield
I'm trying to do something akin to the emerging UI pattern of "side navigation" that you see in apps like *Facebook* and *Path*. This is where the root navigation options are shown via a bezel swipe from the left, which peels the main app view mostly off screen, leaving a hint of it still showing

Re: [MonoTouch] Side Navigation (a la "Path" and "Facebook")

2012-07-04 Thread Nic Wise
(there is a 40k limit in posts, so... this is now plaintext) James Clancey has done a basic version of it: https://github.com/Clancey/FlyOutNavigation I've not seen anything else, tho. But on the surface, it shouldn't be too hard. Two views, one under the other. Trigger something (button) and a

Re: [MonoTouch] UITableView Scenario Help Needed ---

2012-07-04 Thread proindigo
Got my code working. data is being shown in nicely formatted manner in my uitableview. Now the issue is to handle row selection and fetch the corresponding AssessmentID. For reference see the following picture. http://monotouch.2284126.n4.nabble.com/file/n4655749/assessment_home_showing_logged_in_

[MonoTouch] Implementing IImageUpdated in custom MTD Element

2012-07-04 Thread dickies
I've written a custom MTD Element which is being used to show some text and a UIImageView. It inherits IImageUpdated. The UIImage correctly gets returned from any scrolled cells. When the view first loads there a 4 visible cells and the first cell also has the correct UIImage. However, the followi

Re: [MonoTouch] UITableView Scenario Help Needed ---

2012-07-04 Thread Jason Awbrey
in your DataSource class, implement RowSelected. Use the indexPath argument to get the correct element from your data public override void RowSelected(UITableView tableView, NSIndexPath indexPath) { // Do something for the selected row } On Wed, Jul 4, 2012 at 6:26 AM, proindi

Re: [MonoTouch] Side Navigation (a la "Path" and "Facebook")

2012-07-04 Thread Nic Wise
Yeah, that one is just a UIColor. I was mixing it up with UIColor.FromPatternImage... On Wed, Jul 4, 2012 at 8:39 PM, Phil Cockfield wrote: > > BTW - what is that "color": > > baseView.BackgroundColor = Resources.MoleskineBackgroundColor; //it's a > color, but it's a pattern > > > Is that act

[MonoTouch] UIImage.FromFile and @2x images

2012-07-04 Thread Phil Cockfield
What's the strategy for loading retina images via the *UIImage.FromFile*method? The documentation leads me to believe that only *FromBundle* does the automatic @2x file suffix checking - (however even with thatI can't actually see the retina versions loading). Anyhow - with *FromFile*, what I'm d

Re: [MonoTouch] UIImage.FromFile and @2x images

2012-07-04 Thread Phil Cockfield
Opps - I'm sorry. PLEASE IGNORE this. It was confusion with file inclusion within the project. Duh. Apologies. On Wed, Jul 4, 2012 at 8:53 PM, Phil Cockfield wrote: > What's the strategy for loading retina images via the > *UIImage.FromFile*method? > > The documentation leads me to belie