Re: [MonoTouch] 4.0.4.1 update with Monodevelop 2.4.2

2011-07-27 Thread Jeff Stedfast
Hi Wally, In the meantime with MonoDevelop 2.4, one trick I used to get around the bug you are seeing is to use the MonoDevelop / Quit menu item to quit rather than closing the window with the red button. Hope that helps, Jeff On Wed, Jul 27, 2011 at 11:05 AM, Wally McClure

Re: [MonoTouch] Wrong IP Address

2011-07-31 Thread Jeff Stedfast
Hi Greg, It pains me to watch you suffer through this but unfortunately I do not know how to work around this with the current releases of MonoDevelop and MonoTouch. Fortunately, MonoTouch 4.1 will allow manual overrides of the IP address for the debugger to connect to by adding IP addresses

Re: [MonoTouch] 134 error on LLVM with MonoTouch 4.0.4.1

2011-08-02 Thread Jeff Stedfast
Hi Scott, Go into MonoDevelop's Project Options dialog for your project, then click the iPhone Build section and add a few -v's in the textbox for additional mtouch arguments. That might provide more useful feedback about why it is failing. Jeff On Aug 2, 2011 6:18 PM, scolestock

Re: [MonoTouch] mtouch failed with no output

2011-08-03 Thread Jeff Stedfast
Hi Jon, Sorry about the delay. Can you try adding 3 or 4 -v's in the Additional mtouch arguments text field in the Project Options dialog in the iPhone Build category? That might give some more verbose and useful output to narrow down what might be going wrong. Thanks, Jeff On Wed, Jul 27,

Re: [MonoTouch] Wrong IP Address

2011-08-03 Thread Jeff Stedfast
Hi Greg, I just blogged about how to override the settings used by the device used to connect to the debugger on your local machine in current versions of MonoTouch: http://jeffreystedfast.blogspot.com/2011/08/debugging-your-monotouch-apps-future.html I also wrote a bit about our future (likely

Re: [MonoTouch] Wrong IP Address

2011-08-03 Thread Jeff Stedfast
Hi Nic, On Wed, Aug 3, 2011 at 4:12 PM, Nic Wise n...@fastchicken.co.nz wrote: Jeff Any chance of getting those working on MT to post something here? eg: hi, I'm Jeff. I'm working on the MT compiler, I blog at X and tweet at Y. I've been building up my list of MT people in google reader,

Re: [MonoTouch] new mono runtime crashing monodevelop

2011-08-05 Thread Jeff Stedfast
Jon, Is this the bug you are seeing? http://bugzilla.xamarin.com/show_bug.cgi?id=198 If so, how do I reproduce it? Works fine for me on 10.6.8 and Lion. Jeff On Fri, Aug 5, 2011 at 5:07 AM, Jon Hopkins jon.hopk...@bgagroup.netwrote: Hi, The new runtime is crashing my IDE every time, cannot

Re: [MonoTouch] new mono runtime crashing monodevelop

2011-08-05 Thread Jeff Stedfast
– do you want one submitted as a bug? ** ** Dino ** ** *From:* Jeff Stedfast [mailto:j...@xamarin.com] *Sent:* Friday, August 05, 2011 9:55 AM *To:* Dean Cleaver *Cc:* monotouch@lists.ximian.com *Subject:* Re: [MonoTouch] new mono runtime crashing monodevelop ** ** Hi

Re: [MonoTouch] endEditing on UIView is available in MonoTouch?

2011-08-05 Thread Jeff Stedfast
Steott, Looks like you can ignore the whole Super thing and you apparently don't need the [Export]. Jeff On Fri, Aug 5, 2011 at 11:34 AM, Jeff Stedfast j...@xamarin.com wrote: Steott, Yikes! Looks like that wasn't bound. I've just added it so that it will be there in future versions

Re: [MonoTouch] Fwd: [New post] Lion Support in Mono

2011-08-05 Thread Jeff Stedfast
I am told that MonoDevelop is supposed to notify you about MonoFramework updates as well. I never knew. Jeff On Fri, Aug 5, 2011 at 10:08 AM, Jeff Stedfast j...@xamarin.com wrote: MonoDevelop won't show you Mono updates, only addin updates. Jeff

Re: [MonoTouch] Fwd: [New post] Lion Support in Mono

2011-08-05 Thread Jeff Stedfast
MonoDevelop doesn't know that the MDK is an upgrade to the old SDK packages, it doesn't know to notify you. I dunno, this is just what I'm being told. Jeff On Fri, Aug 5, 2011 at 12:17 PM, Jeff Stedfast j...@xamarin.com wrote: I am told that MonoDevelop is supposed to notify you about MonoFramework

Re: [MonoTouch] new mono runtime crashing monodevelop

2011-08-05 Thread Jeff Stedfast
when i moved the mouse! I rebooted and started the IDE again, and it crashed before I could Even open a project. I uninstalled the mono runtime and went back to an old one, and all is fine. ??? Jon ** ** *Von:* Jeff Stedfast [mailto:j...@xamarin.com] *Gesendet:* 05

Re: [MonoTouch] which version of MD?

2011-08-05 Thread Jeff Stedfast
Hi Wally, It's recommended that you stick with MonoDevelop 2.4.2 for iOS development as a lot of people seem to be having issues with 2.6b3. Hope that helps, Jeff On Fri, Aug 5, 2011 at 12:29 PM, Wally McClure theevilprogram...@hotmail.com wrote: I just udpated to the 2.10.3 mono. I'm

Re: [MonoTouch] Custom Pin image

2011-08-05 Thread Jeff Stedfast
Hi Vitramir, MKAnnotationView has an Image property which you can both get and set in MonoTouch. Jeff On Tue, Aug 2, 2011 at 3:06 PM, vitramir vitra...@lufor.ru wrote: If I use MKAnnotationView instead MKPinAnnotationView I'll get same result as if I use UIView. Pin will take my image but

Re: [MonoTouch] Performance cost of MonoTouch vs. Objective-C

2011-08-08 Thread Jeff Stedfast
Just to add, MonoTouch 4.1 should improve things a fair bit. The size of apps should be considerably smaller (the linker is a bit smarter and will remove more unused API) and startup time is greatly reduced (depending on what you do in your FinishedLaunching() override. Jeff On Mon, Aug 8, 2011

Re: [MonoTouch] Performance cost of MonoTouch vs. Objective-C

2011-08-08 Thread Jeff Stedfast
As with anything, it depends. File I/O should be as fast as buffered native I/O (I did a fair bit of testing of this for Mono a few years ago). Most of what apps do is spent idling waiting for user events and idle time is idle time and using the MonoTouch APIs is (for the most part) just a thin

Re: [MonoTouch] Performance cost of MonoTouch vs. Objective-C

2011-08-09 Thread Jeff Stedfast
My *guess* would be that perhaps the GC thread is getting in the way here, trying hard to clean up all the removed objects. A common trick to work around this problem is to try and re-use your heavier objects used in this scenario to try and limit the amount of work the GC has to do. How hard

Re: [MonoTouch] Exception assistance...

2011-08-10 Thread Jeff Stedfast
Yep, that's what it looks like. We should null-protect that method. Which version of MT is this? Jeff On Aug 10, 2011 5:51 PM, Dean Cleaver dean.clea...@xceptionsoftware.com wrote: Guys, Would I be right if I guess that this is an exception where null was passed into the SetString function?

Re: [MonoTouch] Exception assistance...

2011-08-10 Thread Jeff Stedfast
Thanks Dean, I'll look into this tomorrow. Jeff On Aug 10, 2011 5:59 PM, Dean Cleaver dean.clea...@xceptionsoftware.com wrote: Ummm - was released last Friday, and was the latest at that time. From: Jeff Stedfast [mailto:j...@xamarin.com] Sent: Wednesday, August 10, 2011 4:55 PM To: Dean

Re: [MonoTouch] What could possibly cause this?

2011-08-11 Thread Jeff Stedfast
Hi Dean, That screenshot looks really strange and I can't think of anything that would cause that. If you haven't figured out the problem yet, could you file a bug report on http://bugzilla.xamarin.com and attach a zipped project that demonstrates this issue? Thanks, Jeff On Thu, Aug 4, 2011

Re: [MonoTouch] What could possibly cause this?

2011-08-11 Thread Jeff Stedfast
can find something. ** ** Dino ** ** *From:* Jeff Stedfast [mailto:j...@xamarin.com] *Sent:* Thursday, August 11, 2011 5:00 PM *To:* Dean Cleaver *Cc:* Forums, MonoTouch *Subject:* Re: [MonoTouch] What could possibly cause this? ** ** Hi Dean, ** ** That screenshot

Re: [MonoTouch] build failed with no output when using LLVM

2011-08-11 Thread Jeff Stedfast
Hi Jon, Have you tried adding -v -v -v to the Additional arguments to pass to mtouch textbox under Project / ProjectName Options / Build / iPhone Build ? This *might* help provide more useful information. If not, sounds like a bug and you should submit it to http://bugzilla.xamarin.com and,

Re: [MonoTouch] Exception assistance...

2011-08-11 Thread Jeff Stedfast
null to NSUserDefaults.SetString(). From looking at the trace you provided in the original email, it looks like it would have to be the first argument to SetString() that is null if that is of any help to you. Hope that helps, Jeff On Wed, Aug 10, 2011 at 6:39 PM, Jeff Stedfast j...@xamarin.com

Re: [MonoTouch] Monotouch and crash reports problems

2011-08-11 Thread Jeff Stedfast
_catch_exception_raise. My fixes for this should land in 4.1.1 if not sooner. Jeff On Aug 11, 2011 6:34 PM, Jeff Stedfast j...@xamarin.com wrote: Hi Kent, Sorry for the delayed response, I was hoping someone else more knowledgeable would answer. Turns out, I just had to do this myself. The solution

Re: [MonoTouch] What could possibly cause this?

2011-08-14 Thread Jeff Stedfast
showing… ** ** Once again, client sent it to me. I have no idea how to replicate this!*** * ** ** Dino ** ** *From:* monotouch-boun...@lists.ximian.com [mailto: monotouch-boun...@lists.ximian.com] *On Behalf Of *Jeff Stedfast *Sent:* Thursday, August 11, 2011 5:10 PM *To:* Dean

Re: [MonoTouch] Fixes in Monotouch 4.0.5

2011-08-18 Thread Jeff Stedfast
Hi Jon, This is just a fix in the beta branch. Jeff On Thu, Aug 18, 2011 at 3:59 AM, Jon Hopkins jon.hopk...@bgagroup.netwrote: Good Morning, I am installing 4.0.5 that has appeared overnight, and was browsing the beta page for 4.1.0 And saw this mentioned as a bug fix... Views are no

Re: [MonoTouch] people picker problem after upgrading to touch 4 and MD2.8Alpha

2011-08-18 Thread Jeff Stedfast
:* Jeff Stedfast [mailto:j...@xamarin.com] *Sent:* 18 August 2011 15:54 *To:* j...@murray.gb.com *Cc:* Jason Awbrey; monotouch@lists.ximian.com *Subject:* Re: [MonoTouch] people picker problem after upgrading to touch 4 and MD2.8Alpha ** ** Hi John

Re: [MonoTouch] Where are solution author info stored?

2011-08-18 Thread Jeff Stedfast
This sounds like a question for Michael Hutchinson ;-) Jeff On Thu, Aug 18, 2011 at 2:24 PM, vbisbest vbisb...@yahoo.com wrote: I am using Custom Author Information in my solution and have that data saved. However if I open the solution up on another machine after an SVN update, that info

Re: [MonoTouch] Marshalling strings to wide character strings

2011-08-22 Thread Jeff Stedfast
Hi Shawn, The docs for the CharSet enum specify that Unicode means Marshal strings as Unicode 2-byte characters. If you need to marshal strings as UCS4 (or UTF-32), you'll have to marshall things manually. You could submit a feature request to add some helper methods or something to MonoTouch to

Re: [MonoTouch] Default.png not added to iPhone Release build

2011-08-23 Thread Jeff Stedfast
From what I understand, RC2 is only available for Mac (which is why it's not been pushed to the download page) because it is the same as RC1 but with a few MacOS fixes. If you are on MacOS, you should be prompted to update to RC2 when you start up MonoDevelop RC1. Hope that helps, Jeff On Tue,

Re: [MonoTouch] Monotouch activation with proxy

2011-08-24 Thread Jeff Stedfast
Another option is to set the HTTP_PROXY environment variable which Mono (and thus MonoDevelop) will pick up and handle. At some point in the future, this hack won't be necessary (I've already implemented CFProxySupport bindings in MonoMac, but MonoDevelop needs to link with it). Jeff On Wed,

Re: [MonoTouch] WebRequest exception

2011-08-24 Thread Jeff Stedfast
Hi Alicya, I've taken a look at the source code of HttpWebRequest and HttpWebResponse and it looks like PreAuthentication for web requests is implemented, it's just HttpWebResponse's IsMutuallyAuthenticated property that isn't. That being said, could you submit a bug report to

Re: [MonoTouch] Trial Download Is Broken

2011-08-24 Thread Jeff Stedfast
This appears to have been fixed. Jeff On Thu, Aug 18, 2011 at 12:13 AM, crashed crashed...@hotmail.com wrote: Here is the Server Error Message: Server Error in '/' Application Could not find file /home/gonzalo/monotouch/download/download_area/MT/monotouch-eval-4.0.5.pkg. Description:

Re: [MonoTouch] Crash on launch

2011-08-24 Thread Jeff Stedfast
(I'm going to steal Sebastien's response from another similar post) We will need more information. The message about monotouch-fixes.dylib is not the source of your crash. This is a fix for something else (OpenGL signals wrt simulator IIRC). GDB will complain about it but you'll only see that if

Re: [MonoTouch] Where is GL_UNPACK_ROW_LENGTH

2011-08-24 Thread Jeff Stedfast
Hi Mark, I just checked and sadly it looks like these enums aren't available under the current MonoTouch releases. The enum value for UnpackRowLength should be (int) 0x0CF2 if that helps. If that works for you, let me know and I'll pull that and any other enum values you need into

Re: [MonoTouch] Interface builder on Lion

2011-08-24 Thread Jeff Stedfast
Hi Mg, On Sat, Aug 6, 2011 at 3:28 PM, Mg mgre...@cinci.rr.com wrote: Hi, I'm new to MonoTouch (and pretty much everything Mac). I have a Macbook Pro with Lion and I've installed Xcode 4.11 from the app store, Mono 2.10.3, MonoDevelop 2.4, and MonoTouch 4.0.4.1. I've read that I should

Re: [MonoTouch] Audio streaming between iOS and Windows

2011-08-24 Thread Jeff Stedfast
I looks like I might have been wrong... supposedly UDP *is* supported in MonoTouch. Jeff On Wed, Aug 24, 2011 at 6:11 PM, Jeff Stedfast j...@xamarin.com wrote: Hi, Currently UDP is not supported on MonoTouch but TCP is. I'm not sure if there's any reason we can't add UDP support, so feel

Re: [MonoTouch] Xcode 4 Interface Builder

2011-08-24 Thread Jeff Stedfast
Hi Alex, You could try reading over http://xamarin.com/pdf/Transitioning_from_Xcode_3_to_Xcode_4_in_Monotouch.pdf Hope that helps, Jeff On Tue, Aug 9, 2011 at 1:46 PM, Alex1993 rummel.alexan...@googlemail.comwrote: Hey Guys, i updated my OS to Lion and installed Xcode 4. Xcode 3 is not

Re: [MonoTouch] Several UI Questions

2011-08-24 Thread Jeff Stedfast
Hi Pierce, On Mon, Aug 22, 2011 at 4:30 PM, pierceboggan piercebogga...@gmail.comwrote: Hi, I am very new to MonoTouch and recently read the book Professional iPhone Programming with MonoTouch and .NET/C#. However, I have had some trouble understanding exactly how the UI as a whole works

Re: [MonoTouch] Setting Font in CGBitmapContext.SelectFont using variable

2011-08-25 Thread Jeff Stedfast
Hi Rick, What is the value of fontName? And is it of type 'string' or some other type? Jeff On Wed, Aug 24, 2011 at 6:59 PM, ric3kg rickgr...@mac.com wrote: I'm trying to write a general purpose routine that will set the font using a variable instead of the literal font name.

Re: [MonoTouch] debugger not connecting with 2.6 RC 1

2011-08-25 Thread Jeff Stedfast
Hi John, Helmut What is the default value for Debugger Host being set to for you guys? Is it not automatic? Jeff On Thu, Aug 25, 2011 at 9:06 AM, helusoft hlu...@phoenix-computer.dewrote: Hi Jon, i've had the same problem. Go to the device settings, select your app and change the Debugger

Re: [MonoTouch] debugger not connecting with 2.6 RC 1

2011-08-25 Thread Jeff Stedfast
Thanks - I guess we'll need to look into why it isn't working for you guys (it seems to work fine for me?). Can you file a bug at http://bugzilla.xamarin.com and make sure to note that the Debugging Host had been set to automatic but that it didn't work? I'm not sure what other info we'll need,

Re: [MonoTouch] debugger not connecting with 2.6 RC 1

2011-08-25 Thread Jeff Stedfast
the debugger host setting? Its been working for months until today, ** ** jon ** ** *Von:* monotouch-boun...@lists.ximian.com [mailto: monotouch-boun...@lists.ximian.com] *Im Auftrag von *Jeff Stedfast *Gesendet:* 25 August 2011 16:01 *An:* helusoft *Cc:* monotouch

Re: [MonoTouch] Can't compile for the phone

2011-08-25 Thread Jeff Stedfast
/show_bug.cgi?id=346 see comment #7 ** ** Dino ** ** *From:* Jeff Stedfast [mailto:j...@xamarin.com] *Sent:* Thursday, August 25, 2011 10:23 AM *To:* Dean Cleaver *Cc:* Forums, MonoTouch *Subject:* Re: [MonoTouch] Can't compile for the phone ** ** Hi Dean

Re: [MonoTouch] debugger not connecting with 2.6 RC 1

2011-08-25 Thread Jeff Stedfast
Developer Email: jimi...@gmail.com Twitter: http://twitter.com/#!/dtavlikos Blog: http://software.tavlikos.com On Aug 25, 2011, at 6:32 PM, Jon Hopkins wrote: Just tried 2.6 rc2 (2.5.93.1) and still broken for me L jon Von: Jeff Stedfast [mailto:j...@xamarin.com] Gesendet: 25

Re: [MonoTouch] How do I fix this?

2011-08-27 Thread Jeff Stedfast
Hi Dean, If this.NavigationController is null, that suggests that there is no parent NavigationController in the stack. Is it perhaps a toplevel view controller or a child of some other type of controller? Jeff ___ MonoTouch mailing list

Re: [MonoTouch] Index 17 error while installing Monotouch 4.0.6

2011-08-30 Thread Jeff Stedfast
Alex Corrado and I tracked this down on Friday. The problem is that the MTActivation program was linked in such a way that it is requiring MonoFramework 2.10.4 being installed. We think we have a fix and Alex made 4.0.7 packages last night, we just need to test them to make sure they work. So you

Re: [MonoTouch] IPad 2 problems

2011-08-30 Thread Jeff Stedfast
Hi John, That sounds bad! :-( Can you submit a bug report with a sample test case? I've got an iPad2 for testing. Thanks, Jeff On Tue, Aug 30, 2011 at 5:27 AM, Jon Hopkins jon.hopk...@bgagroup.netwrote: Hi, Is there a certain MT version I need to upgrade to to avoid mysterious crashes on

Re: [MonoTouch] Are there any known issues with WebClient and SSL?

2011-08-30 Thread Jeff Stedfast
Hi Nic, Did you ever figure this out? If not, could you open a bug report at http://bugzilla.xamarin.com? Hopefully Sebastien will have some ideas. Thanks, Jeff On Wed, Aug 24, 2011 at 2:14 PM, Nic Wise n...@fastchicken.co.nz wrote: I'm still working out whats going on, but i'm getting this

Re: [MonoTouch] Fwd: Are there any known issues with WebClient and SSL?

2011-08-30 Thread Jeff Stedfast
Haha, thanks Sebastien ;-) Jeff On Tue, Aug 30, 2011 at 6:22 PM, Sebastien Pouliot sebast...@xamarin.comwrote: I will hit reply all, I will hit reply all, I will hit reply all, I will hit reply all, I will hit reply all, I will hit reply all, I will hit reply all, I will hit reply all, I

Re: [MonoTouch] Stable combo

2011-08-31 Thread Jeff Stedfast
Hi, We're about to release MonoDevelop 2.6 final (hopefully today or tomorrow), so based on that, my recommendation would probably be: * Xcode 3.2.6 (install to a different prefix, like /Xcode3) if you want to use Interface Builder functionality (we're working hard on fixing bugs for MonoDevelop

Re: [MonoTouch] Stable combo

2011-08-31 Thread Jeff Stedfast
Hi Nic, On Wed, Aug 31, 2011 at 8:10 AM, Nic Wise n...@fastchicken.co.nz wrote: Whats the current state (as of 2.6 being out, ie tomorrow) if I want to use 4.1? * Xcode 3.2.6 (install to a different prefix, like /Xcode3) if you want to use Interface Builder functionality (we're working hard

Re: [MonoTouch] Stable combo

2011-08-31 Thread Jeff Stedfast
On Wed, Aug 31, 2011 at 10:34 AM, Nic Wise n...@fastchicken.co.nz wrote: Yep, if you want to use MonoTouch 4.1 betas, it's still the same recommendation for all the supporting software (Xcode 3.2.6, MonoFramework 2.10.5, MonoDevelop 2.6.0, etc). Cool. I forgot 4.1 was a beta... I have

Re: [MonoTouch] Problem on changing namespace for Foo.xib.designer.cs

2011-08-31 Thread Jeff Stedfast
Adding Michael Hutchinson to the Cc, hopefully he has some ideas. Jeff On Wed, Aug 31, 2011 at 1:41 PM, diviner divinerc...@gmail.com wrote: Hi all, Sometimes I want to organize modules in my monotouch project, so I need to change namespace when the xib is changed. Lets say I have a page

Re: [MonoTouch] Stable combo

2011-09-01 Thread Jeff Stedfast
, 2011 at 15:45, Jeff Stedfast j...@xamarin.com wrote: On Wed, Aug 31, 2011 at 10:34 AM, Nic Wise n...@fastchicken.co.nz wrote: Yep, if you want to use MonoTouch 4.1 betas, it's still the same recommendation for all the supporting software (Xcode 3.2.6, MonoFramework 2.10.5

Re: [MonoTouch] MapKit.MKMapView CalloutAccessoryControlTapped event not working on iPad simulator or devices...

2011-09-01 Thread Jeff Stedfast
Hi Dominique, Sorry for taking so long to get around to your mail (but probably Sebastien already replied and just forgot to Cc the list?). Did you ever get an answer for this? If not, could you file a bug report with a small test-case at http://bugzilla.xamarin.com ? I'm really interested to

Re: [MonoTouch] MapKit.MKMapView CalloutAccessoryControlTapped event not working on iPad simulator or devices...

2011-09-01 Thread Jeff Stedfast
for MonoTouch.Dialogs, and I submitted a pull request to Miguel here... https://github.com/migueldeicaza/MonoTouch.Dialog/pull/53 So would you like a MonoTouch.Dialogs based test case or a pure MT test case? Dominique. On 01/09/2011 21:54, Jeff Stedfast wrote: Hi Dominique, Sorry for taking

Re: [MonoTouch] Debugger problem

2011-09-02 Thread Jeff Stedfast
This bug will be fixed in MonoDevelop 2.6 final due out early next week (hopefully). Jeff On Sep 1, 2011 7:46 PM, rcpehls rcpe...@hotmail.com wrote: Problem solved. Go to the device settings, select your app and change the Debugger Settings Debugger Host to your IP (e.g. 127.0.0.1 for

Re: [MonoTouch] Missing Class Since Upgrade

2011-09-02 Thread Jeff Stedfast
Hi Philip, This sounds like a bug. Can you submit a bug report to http://bugzilla.xamarin.com ? Thanks, Jeff On Sep 1, 2011 7:46 PM, Philip.j phili...@fwbs.net wrote: hi, I have just upgraded my MonoTouch environment from MonoFramework 2.10.1_3 MonoTouch 4.0.3 to MonoFramework 2.10.5_0

Re: [MonoTouch] Howto debug on IPad with Universal-Applications Projecttype?

2011-09-02 Thread Jeff Stedfast
Michael, Any ideas? Jeff On Aug 25, 2011 4:49 AM, sebastiankell...@cs-ag.de wrote: Hi, I'm trying to debug my Application under the IPad Emulator, but under the Universial-Applications Projecttype Monodevelop jumps straigt to IPhone Emulator while debugging. Can anyone hel? Best regards

Re: [MonoTouch] ABAddressBook GetGroups issue

2011-09-02 Thread Jeff Stedfast
Hi Mark, Did you ever figure this out? If not, it might be a bug (doesn't look you are doing anything wrong), could you submit a bug report to http://bugzilla.xamarin.com ? Thanks, Jeff On Aug 16, 2011 10:09 AM, mutablepro m...@mutableprojects.com wrote: Hi, Im having a problem with

Re: [MonoTouch] MapKit.MKMapView CalloutAccessoryControlTapped event not working on iPad simulator or devices...

2011-09-02 Thread Jeff Stedfast
, Jeff Stedfast wrote: A test-case that depends on MonoTouch.Dialog is fine. Jeff On Thu, Sep 1, 2011 at 5:43 PM, Dominique Louis domini...@savagesoftwaresolutions.com wrote: Hi Jeff, I've not received any reply from Sebastien, or anyone else. The code is actually part of a MapKitElement

Re: [MonoTouch] Dragging and dropping files on MonoDevelop causes it to blow up

2011-09-02 Thread Jeff Stedfast
Hi Shawn, Yea, this is a known bug: http://bugzilla.xamarin.com/show_bug.cgi?id=348 Hope that helps, Jeff On Fri, Sep 2, 2011 at 12:19 PM, Shawn Baker shawn.ba...@librestream.comwrote: I'm using MonoDevelop 2.6 RC2 on a Mac, but I've also tested this on MD 2.4.2 on another Mac. If I have a

Re: [MonoTouch] Thoughts on Localization

2011-09-02 Thread Jeff Stedfast
Hi Robert, This is definitely on our TODO list, we just need to figure out the right way to do it. Unfortunately I'm not the right guy to ask about the details, but I wanted to let you know that it's on The List ;-) Jeff On Fri, Sep 2, 2011 at 12:22 PM, Robert Jordan robe...@gmx.net wrote:

Re: [MonoTouch] The compiler appears to have crashed

2011-09-03 Thread Jeff Stedfast
Awesome work! Can you submit a bug report to bugzilla? Thanks, Jeff On Sep 3, 2011 8:45 PM, competent_tech xamarinfor...@competent.com wrote: After a process of elimination (removing files until I found the one causing the issue, then removing or adjusting methods), I was able to track down

Re: [MonoTouch] The compiler appears to have crashed

2011-09-06 Thread Jeff Stedfast
Thanks Nic, added your findings to the bugzilla entry - they might come in handy while debugging this ;-) Jeff On Sun, Sep 4, 2011 at 6:14 AM, Nic Wise n...@fastchicken.co.nz wrote: Interestingly, this works public static decimal DecimalFromDB(object theValue, decimal dDefaultValue =

Re: [MonoTouch] Installed MD 2.6 but have lost my Key Bindings

2011-09-08 Thread Jeff Stedfast
Hi John, Not really an excuse, but allow me to explain what is happening: MonoDevelop 2.6 (and 2.4?) use versioned config directories allowing them to be parallel installable. This has its good points (allow you to try out beta versions w/o risk of breaking your stable version of MD), but it

Re: [MonoTouch] Installed MD 2.6 but have lost my Key Bindings

2011-09-08 Thread Jeff Stedfast
AM, Jeff Stedfast j...@xamarin.com wrote: Hi John, Not really an excuse, but allow me to explain what is happening: MonoDevelop 2.6 (and 2.4?) use versioned config directories allowing them to be parallel installable. This has its good points (allow you to try out beta versions w/o risk

Re: [MonoTouch] MonoTouch unexpected behaviors (with native FB lib)

2011-09-08 Thread Jeff Stedfast
Hi Vinkage, The problem is that your SessionDelegate is being GC'd. You need to keep a reference to it around until it is no longer needed. The easy fix is to declare it at as a member of your class. The second error is basically MonoTouch trying to create a new SessionDelegate object for the

Re: [MonoTouch] UITextField.ShouldReturn crashes app

2011-09-08 Thread Jeff Stedfast
Hi Derik, Are you making sure to keep a reference to the delegate in managed land? If not, odds are likely that it is being GC'd. Hope that helps, Jeff On Thu, Sep 8, 2011 at 1:50 PM, Derik Palacino de...@palacino.net wrote: I'm using MonoDevelop 2.6 with MonoTouch 4.0.7 and XCode 3.2.6. I'm

Re: [MonoTouch] Can we use the TestFlightApp SDK?

2011-09-09 Thread Jeff Stedfast
Andrew, That's a good question and I don't know the answer to that :-( Are you linking with any other libraries that perhaps pull in those libraries by some other means? That said, I have started working on a fix for this type of issue that I hope to get into a future release of the MonoTouch

Re: [MonoTouch] Installed MD 2.6 but have lost my Key Bindings

2011-09-09 Thread Jeff Stedfast
John, Okay, that was probably 2.4.2, then. Presumably you weren't running a 2.6Beta, right? Jeff On Fri, Sep 9, 2011 at 2:42 AM, JohnnyNoMates m...@johnhair.com wrote: Hi Jeff, Not sure what the previous version was other than it was the last stable release, I always upgrade to stable

Re: [MonoTouch] Memory Warning Level1, Level2, then crash

2011-09-09 Thread Jeff Stedfast
Not to Well-Actually-Cat you, but I'm pretty sure the iPad1 only has 128 MB of RAM. I mention this because it may be useful to Stone to realize he has even fewer resources to work with than he thought :-) Nothing beats having actual hardware to test on, but at least if you have a general idea of

Re: [MonoTouch] Memory Warning Level1, Level2, then crash

2011-09-09 Thread Jeff Stedfast
Oh snap! I just got told ;-) Thanks for correcting me. Jeff On Sep 9, 2011 8:54 AM, Mikkel Lønow mloe...@gmail.com wrote: well.actually.cat, 256 MB - http://en.wikipedia.org/wiki/IPad#Technical_specifications :) Mikkel On Fri, Sep 9, 2011 at 14:34, Jeff Stedfast j...@xamarin.com wrote

Re: [MonoTouch] Installed MD 2.6 but have lost my Key Bindings

2011-09-10 Thread Jeff Stedfast
Hi John, On Sat, Sep 10, 2011 at 7:29 AM, JohnnyNoMates m...@johnhair.com wrote: Hi Jeff, No definitely not a beta, was last stable version. Also, I cant find the config folder you mentioned for the previous version. I did however find the new location which contains the Custom.mac-kb.xml

Re: [MonoTouch] LINQ JIT error, again

2011-09-10 Thread Jeff Stedfast
Hi Brian, Can you submit a bug report to http://bugzilla.xamarin.com? This is something the JIT guys will have to take a look at because I don't know enough to answer this question. Thanks, Jeff On Fri, Sep 9, 2011 at 10:41 AM, Brian Schuth br...@alphce.com wrote: I have simplified this

Re: [MonoTouch] System.MissingMethodException: No constructor found for ViewController::.ctor(System.IntPtr)

2011-09-10 Thread Jeff Stedfast
Hi Andrew, I don't know the answer to this but it seems like an important issue that we will need to examine, so could you submit this as a bug to http://bugzilla.xamarin.com? Thanks, Jeff On Fri, Sep 9, 2011 at 6:45 PM, Andrew Young andrewdyo...@gmail.com wrote: I'll save the crash dump

Re: [MonoTouch] setCoordinate binding

2011-09-10 Thread Jeff Stedfast
Hi Chris, Can you file this on http://bugzilla.xamarin.com so someone can look into binding this? Thanks, Jeff On Thu, Sep 8, 2011 at 4:24 PM, Chris Hamblett c_hambl...@hotmail.comwrote: I'm having issues with live updating of a custom MKAnnotation's coordinates and not having it update in

Re: [MonoTouch] Monodevelop 2.8 A2 - XCode 4 Integration w/ Resources

2011-09-10 Thread Jeff Stedfast
Hi Steve, I've Cc'd Michael Hutchinson (one of the MonoDevelop authors). Hopefully he'll be able to answer this question. Jeff On Thu, Sep 8, 2011 at 12:49 PM, steve.ment...@lw.com wrote: Greetings all. On the notes for 2.8A2, I saw that 'resource' integration with xcode4 was possibleŠ

Re: [MonoTouch] setCoordinate binding

2011-09-10 Thread Jeff Stedfast
For a binding, probably not long. Jeff On Sat, Sep 10, 2011 at 1:40 PM, Chris Hamblett c_hambl...@hotmail.comwrote: Sure. Any idea where on the priority totem/how long it will take for such a binding to be incorporated? ~Chris Sent from my iPhone On Sep 10, 2011, at 1:20 PM, Jeff

Re: [MonoTouch] Just upgraded MonoTouch and MonoDevelop, MD now crashes on startup

2011-09-13 Thread Jeff Stedfast
Hi Tom, I don't think it's that MonoDevelop necessarily *requires* Mono 2.10.5, it's just that 2.10.5 ships a newer version of Gtk+ which has presumably fixed the bug that you were seeing. Jeff On Tue, Sep 13, 2011 at 4:52 AM, tomf84 m...@tomfanning.eu wrote: Indeed, upgrading Mono to 2.10.5

Re: [MonoTouch] uninstalling MT

2011-09-13 Thread Jeff Stedfast
Hi Nic, You shouldn't need to remove the ~/Library/MonoTouch/License.v2 file (I'd recommend not removing it, in fact ;-) The only way I know of to uninstall MonoTouch (and I'm kinda new to MacOSX, so there might be a better/cleaner way... but) sudo rm -rf /Developer/MonoTouch sudo pkgutil

Re: [MonoTouch] Issue with Intellisense/Code Completion

2011-09-13 Thread Jeff Stedfast
Yes, MonoDevelop 2.8beta1's intellisense is horribly broken. We'll be putting out beta2 shortly which should fix that. Jeff On Sep 13, 2011 8:07 PM, netboy2005 ja...@pointblanc.net wrote: Intellisense on 2.8b1 doesn't seem to be working correctly. Forgive me if I'm being stupid - I'm new to

Re: [MonoTouch] Issue with Intellisense/Code Completion

2011-09-14 Thread Jeff Stedfast
*. On Sep 13, 2011, at 8:39 PM, Jeff Stedfast [via MonoTouch] wrote: Yes, MonoDevelop 2.8beta1's intellisense is horribly broken. We'll be putting out beta2 shortly which should fix that. Jeff On Sep 13, 2011 8:07 PM, netboy2005 a href=x-msg://565/user/SendEmail.jtp?type=nodeamp;node

Re: [MonoTouch] MonoDevelop 2.6 + MT4.2 unusable :(

2011-09-14 Thread Jeff Stedfast
What Nic said ;-) I've also uploaded a fixed MonoTouch-lib.zip to bugzilla that you can download and dump into /Developer/MonoTouch/usr/share/docs/MonoTouch/ while waiting for an updated 4.2.1 release. Hope that helps, Jeff On Wed, Sep 14, 2011 at 5:41 PM, Nic Wise n...@fastchicken.co.nz

Re: [MonoTouch] MonoDevelop 2.6 + MT4.2 unusable :(

2011-09-14 Thread Jeff Stedfast
. Furthermore, as noted on the bugzilla entry, I tried your new zipfile and did not notice any benefit. Still crippled. Please advise. On Wed, Sep 14, 2011 at 16:02, Jeff Stedfast j...@xamarin.com wrote: What Nic said ;-) I've also uploaded a fixed MonoTouch-lib.zip to bugzilla

Re: [MonoTouch] Load image into texture

2011-09-14 Thread Jeff Stedfast
Hi Mark, I'm not really sure how to convert an image into a texture, but you can extract the raw bytes from a UIImage using some code like this: NSData data = image.AsJPEG (1.0f); MemoryStream memory = new MemoryStream (); using (var stream = data.AsStream ()) { byte[] buf = new byte[4096];

Re: [MonoTouch] Bug 724

2011-09-15 Thread Jeff Stedfast
to resolved without actually solving the problem, I take this as a good reason that Objective-C will always have functions that cannot be done through MonoTouch. I guess I will be making the switch back to xCode. Sent from my iPhone On Sep 15, 2011, at 12:19 PM, Jeff Stedfast j

Re: [MonoTouch] Bug 724

2011-09-15 Thread Jeff Stedfast
, Jeff Stedfast j...@xamarin.com wrote: Hi Chris, Reading the developer documentation on Apple's site for MKAnnotation, this is what it says for setCoordinate: setCoordinate: Sets the new center point of the annotation. - (void)setCoordinate:(CLLocationCoordinate2D)newCoordinate Parameters

Re: [MonoTouch] Bug 724

2011-09-15 Thread Jeff Stedfast
the annotation. Hope that helps! Jeff On Thu, Sep 15, 2011 at 1:06 PM, Jeff Stedfast j...@xamarin.com wrote: Turns out people are having the EXACT same issue you are having in Objective-C on StackOverflow: http://stackoverflow.com/questions/2256177/how-to-move-a-mkannotation-without-adding

Re: [MonoTouch] Bug 724

2011-09-15 Thread Jeff Stedfast
, as hinted at by the Apple docs). Jeff On Thu, Sep 15, 2011 at 4:43 PM, Jeff Stedfast j...@xamarin.com wrote: Hi Chris, I did some more looking and it turns out the solution is incredibly simple: In your MyAnnotation class, do this:                public override CLLocationCoordinate2D

Re: [MonoTouch] Bug 724

2011-09-15 Thread Jeff Stedfast
dragsdrops your annotation view, as hinted at by the Apple docs). Jeff On Thu, Sep 15, 2011 at 4:43 PM, Jeff Stedfast j...@xamarin.com wrote: Hi Chris, I did some more looking and it turns out the solution is incredibly simple: In your MyAnnotation class, do

Re: [MonoTouch] Can't build project containing defa...@2x.png

2011-09-15 Thread Jeff Stedfast
Hi Shawn, What if you try to do that rename manually? Does it work? FWIW, you don't seem to be doing anything obviously wrong... I wonder if maybe the warnings above are the cause. For example, when it says the png is already optimized and that it is going to just copy the png to the output

Re: [MonoTouch] Find ID of a control

2011-09-16 Thread Jeff Stedfast
Hi Karl, MonoTouch decorates outlets with an [Outlet] attribute that you could check for. You could perhaps check for that. Jeff On Fri, Sep 16, 2011 at 1:07 AM, Karl Heinz Brehme Arredondo k...@e-magesolutions.com wrote: Hi, Is there a way to get the ID (aka name of the variable or Outlet

Re: [MonoTouch] Can't build project containing defa...@2x.png

2011-09-16 Thread Jeff Stedfast
Hi Shawn, I'm glad you found a workaround! It would probably still be a good idea to submit an official bug report about this (with an attached defa...@2x.png that caused problems) to http://bugzilla.xamarin.com so that we can look into the issue because I'm sure that if you hit this bug, other

Re: [MonoTouch] Web Service timeouts

2011-09-18 Thread Jeff Stedfast
Hi Dean, Unfortunately I'm not very knowledgeable when it comes to HttpWebRequest. Could you submit a bug report to http://bugzilla.xamarin.com with a sample test case (or whatever info you can provide) and Cc gonz...@xamarin.com? He probably knows the most about that area of code. Thanks, Jeff

Re: [MonoTouch] DateTimeOffset in MonoTouch Serialization

2011-09-18 Thread Jeff Stedfast
Hi Steve, I don't know the answer, but I've Cc'd Atsushi Enomoto who is our lead on the WCF implementation in Mono - hopefully he can answer your question. Hope that helps, Jeff On Sat, Sep 17, 2011 at 1:35 PM, Steve Meagher stevemeag...@gmail.com wrote: Hi, Does anyone know whether or not

Re: [MonoTouch] System Requirements for MonoTouch

2011-09-18 Thread Jeff Stedfast
Hi, Pretty much any Mac on the market today with 4+ GB RAM should be plenty powerful. I use a MacBook Air as my development machine which is a 1.7GHz Core2 machine w/ 4GB RAM and it is plenty. Not sure I'd *recommend* an Air, since the screen is a bit small (can barely show a 1:1 iPad simulator

Re: [MonoTouch] view-with-controller code generation problem

2011-09-19 Thread Jeff Stedfast
KuroInfoController (IntPtr handle) : base (handle) On Sunday, September 18, 2011 at 10:05, jowi [via MonoTouch] wrote: Jeff Stedfast wrote: I think most of the old ctors weren't really valuable and so they were stripped out. You can still add them, of course. I've been writing an iPad app in my spare time

Re: [MonoTouch] view-with-controller code generation problem

2011-09-19 Thread Jeff Stedfast
Jowi, Can you submit a bug report about this and how you are using it when it crashes? Since most of us don't have the book handy, could you attach the sample project to the bug report? http://bugzilla.xamarin.com Thanks! Jeff On Mon, Sep 19, 2011 at 9:39 AM, Jeff Stedfast j...@xamarin.com

  1   2   3   4   >