[MonoTouch] Random app crash with MKReverseGeocoder

2012-08-22 Thread Alexander Viken
Hi All.

I am having a problem with random crashes in a navigation/geotracking app. The 
crash is related to doing reverse lookup for addresses based on coordinates at 
the end of the trip. I am using MKReverseGeocoder and a 
MKReverseGeocoderDelegate class but no matter how much debug info I add to the 
code I still don't get any feedback in the application output or the debugger. 

The scenario is that when the user click a button to stop the trip they are 
taken to a trip summary view, and I try to reverse lookup the start and end 
addresses. There's no pattern in if it's the start or end address that causes 
the crash it's totally random, and happens 2-3 times out of 10.

Anyone got a clue on how to get (more) output in the debugger for a cause or 
another way to get addresses based on coordinates?

Vennlig hilsen/Kind regards

ALEXANDER VIKEN
Appaloosa AS  co-founder / Technology Director / MTA (MVP/MCTS/MCP/CSM)
Appaloosa på Facebook: http://appaloosa.no

M: (+47) 472 71 000 |  skype: alexander-appaloosa


twitter: http://twitter.com/alexanderviken
blog: http://agilemobility.net http://mobilteknologi.no
bio: http://about.me/alexanderviken



___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Moving from ARM6+7 to just ARM7

2012-08-22 Thread Nic Wise
Thats a good question. I'd ask on the apple forums.

Normally, yes. If you start with ARM6, you have to keep arm6. But
Apple is stopping supporting arm6 in the ios6 XCODE, so this might
change

(at least, I think they are!)

On Wed, Aug 22, 2012 at 5:01 AM, rnendel11 rnende...@gmail.com wrote:
 I'm assuming this results in a rejection, any experience out there?



 --
 View this message in context: 
 http://monotouch.2284126.n4.nabble.com/Moving-from-ARM6-7-to-just-ARM7-tp4656644.html
 Sent from the MonoTouch mailing list archive at Nabble.com.
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch



-- 
Nic Wise
t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
b. http://www.fastchicken.co.nz/

mobileAgent (for FreeAgent): get your accounts in your pocket.
http://goo.gl/IuBU
Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
Earnest: Self-employed? Track your business expenses and income.
http://earnestapp.com
Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p
London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Random app crash with MKReverseGeocoder

2012-08-22 Thread Nic Wise
I think there _was_ an old iOS6 bug which did this. I ended up using
google directly:

https://github.com/nicwise/londonbikeapp/blob/master/londonbikeapp/TripLog.cs#L308

This might have been fixed, but a friend had an issue with his (ObjC) app:

Urgent work around fix for reverse geocoding crash in iOS 4.3

http://itunes.apple.com/gb/app/nextbuses/id362006676?mt=8

So it might not be a MT issue

Can you distill it down to a single view app, which does the geocode
on a given Lat/Lon? to test it out?



On Wed, Aug 22, 2012 at 12:30 PM, Alexander Viken
alexan...@appaloosa.no wrote:
 Hi All.

 I am having a problem with random crashes in a navigation/geotracking app.
 The crash is related to doing reverse lookup for addresses based on
 coordinates at the end of the trip. I am using MKReverseGeocoder and a
 MKReverseGeocoderDelegate class but no matter how much debug info I add to
 the code I still don't get any feedback in the application output or the
 debugger.

 The scenario is that when the user click a button to stop the trip they are
 taken to a trip summary view, and I try to reverse lookup the start and end
 addresses. There's no pattern in if it's the start or end address that
 causes the crash it's totally random, and happens 2-3 times out of 10.

 Anyone got a clue on how to get (more) output in the debugger for a cause or
 another way to get addresses based on coordinates?

 Vennlig hilsen/Kind regards

 ALEXANDER VIKEN
 Appaloosa AS  co-founder / Technology Director / MTA (MVP/MCTS/MCP/CSM)
 Appaloosa på Facebook: http://appaloosa.no

 M: (+47) 472 71 000 |  skype: alexander-appaloosa


 twitter: http://twitter.com/alexanderviken
 blog: http://agilemobility.net http://mobilteknologi.no
 bio: http://about.me/alexanderviken




 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch




-- 
Nic Wise
t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
b. http://www.fastchicken.co.nz/

mobileAgent (for FreeAgent): get your accounts in your pocket.
http://goo.gl/IuBU
Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
Earnest: Self-employed? Track your business expenses and income.
http://earnestapp.com
Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p
London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] ODRefreshControl

2012-08-22 Thread Nic Wise
Not that I've seen, but:

1. It's now a standard control in iOS6 - UIRefreshControl -
https://developer.apple.com/library/prerelease/ios/#documentation/UIKit/Reference/UIRefreshControl_class/Reference/Reference.html#//apple_ref/occ/cl/UIRefreshControl

(obviously, you need a dev account to see that, which means you have
agreed to the NDA)

2. it's a 6-element interface, so it should be easy to write a wrapper

3. There isn't a HUGE amount of code, so it could be ported, I guess?



On Wed, Aug 22, 2012 at 9:54 AM, Benedikt Hübschen
benedikt.huebsc...@systemiya.de wrote:
 Hi,

 has any tried to port/use ODRefreshControl to/in MT?

 ( https://github.com/Sephiroth87/ODRefreshControl )

 Regards,
 Benedikt Hübschen

 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch




-- 
Nic Wise
t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
b. http://www.fastchicken.co.nz/

mobileAgent (for FreeAgent): get your accounts in your pocket.
http://goo.gl/IuBU
Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
Earnest: Self-employed? Track your business expenses and income.
http://earnestapp.com
Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p
London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Moving from ARM6+7 to just ARM7

2012-08-22 Thread John Hair
I compile for arm6 and arm7, purely because I was told that there is a 
slight performance improvement for native arm7.
Im expecting to have to drop arm6 once the new xcode is 'official', 
probably around the time that iOS6 is released methinks.

I have no idea what Apple will do if you drop arm6 support now though, I'd 
be interested in that answer too.

Cheers
John


 myCal PRO is a super new Calendar app for your iPhone and is available now 
on the Apple AppStore (iTunes link).
Or try out myCal FREE (iTunes link). Click a banner ad or two! 


 From: Nic Wise n...@fastchicken.co.nz
Sent: 22 August 2012 13:17
To: rnendel11 rnende...@gmail.com
Subject: Re: [MonoTouch] Moving from ARM6+7 to just ARM7

Thats a good question. I'd ask on the apple forums.

Normally, yes. If you start with ARM6, you have to keep arm6. But
Apple is stopping supporting arm6 in the ios6 XCODE, so this might
change

(at least, I think they are!)

On Wed, Aug 22, 2012 at 5:01 AM, rnendel11 rnende...@gmail.com wrote:
 I'm assuming this results in a rejection, any experience out there?



 --
 View this message in context: 
http://monotouch.2284126.n4.nabble.com/Moving-from-ARM6-7-to-just-ARM7-tp465
6644.html
 Sent from the MonoTouch mailing list archive at Nabble.com.
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch

-- 
Nic Wise
t. +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
b. http://www.fastchicken.co.nz/

mobileAgent (for FreeAgent): get your accounts in your pocket.
http://goo.gl/IuBU
Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
Earnest: Self-employed? Track your business expenses and income.
http://earnestapp.com
Nearest Bus: find when the next bus is coming to your stop. 
http://goo.gl/Vcz1p
London Bike App: Find the nearest Boris Bike, and get riding! 
http://goo.gl/Icp2
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Moving from ARM6+7 to just ARM7

2012-08-22 Thread Steve Maier
I want to do the same thing  What I started doing is adding Flurry to get the 
analytics to tell me what people are actually using for the devices. I have 
found that there are quite a few ARM6 devices being used for my apps. 

Steve

Sent from my iPhone

On Aug 22, 2012, at 8:17 AM, Nic Wise n...@fastchicken.co.nz wrote:

 Thats a good question. I'd ask on the apple forums.
 
 Normally, yes. If you start with ARM6, you have to keep arm6. But
 Apple is stopping supporting arm6 in the ios6 XCODE, so this might
 change
 
 (at least, I think they are!)
 
 On Wed, Aug 22, 2012 at 5:01 AM, rnendel11 rnende...@gmail.com wrote:
 I'm assuming this results in a rejection, any experience out there?
 
 
 
 --
 View this message in context: 
 http://monotouch.2284126.n4.nabble.com/Moving-from-ARM6-7-to-just-ARM7-tp4656644.html
 Sent from the MonoTouch mailing list archive at Nabble.com.
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch
 
 
 
 -- 
 Nic Wise
 t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
 b. http://www.fastchicken.co.nz/
 
 mobileAgent (for FreeAgent): get your accounts in your pocket.
 http://goo.gl/IuBU
 Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
 Earnest: Self-employed? Track your business expenses and income.
 http://earnestapp.com
 Nearest Bus: find when the next bus is coming to your stop. 
 http://goo.gl/Vcz1p
 London Bike App: Find the nearest Boris Bike, and get riding! 
 http://goo.gl/Icp2
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Random app crash with MKReverseGeocoder

2012-08-22 Thread Alexander Viken
Hi

I think i have come a bit closer to the problem It's not the geocoder,  it 
looks like it's the MonoTouch bindings for TestFlight that is the culprit . 
When i remove all references to TestFlight everything works great.

I use TestFlight in other applications with no problems  but it could be that 
the combination of MapKit/Geocoder and TestFlight that causes this. 

Thanx for the link to urgent fixes and tip about using google directly.

alex.

On 22. aug. 2012, at 14:27, Nic Wise n...@fastchicken.co.nz wrote:

 I think there _was_ an old iOS6 bug which did this. I ended up using
 google directly:
 
 https://github.com/nicwise/londonbikeapp/blob/master/londonbikeapp/TripLog.cs#L308
 
 This might have been fixed, but a friend had an issue with his (ObjC) app:
 
 Urgent work around fix for reverse geocoding crash in iOS 4.3
 
 http://itunes.apple.com/gb/app/nextbuses/id362006676?mt=8
 
 So it might not be a MT issue
 
 Can you distill it down to a single view app, which does the geocode
 on a given Lat/Lon? to test it out?
 
 
 
 On Wed, Aug 22, 2012 at 12:30 PM, Alexander Viken
 alexan...@appaloosa.no wrote:
 Hi All.
 
 I am having a problem with random crashes in a navigation/geotracking app.
 The crash is related to doing reverse lookup for addresses based on
 coordinates at the end of the trip. I am using MKReverseGeocoder and a
 MKReverseGeocoderDelegate class but no matter how much debug info I add to
 the code I still don't get any feedback in the application output or the
 debugger.
 
 The scenario is that when the user click a button to stop the trip they are
 taken to a trip summary view, and I try to reverse lookup the start and end
 addresses. There's no pattern in if it's the start or end address that
 causes the crash it's totally random, and happens 2-3 times out of 10.
 
 Anyone got a clue on how to get (more) output in the debugger for a cause or
 another way to get addresses based on coordinates?
 
 Vennlig hilsen/Kind regards
 
 ALEXANDER VIKEN
 Appaloosa AS  co-founder / Technology Director / MTA (MVP/MCTS/MCP/CSM)
 Appaloosa på Facebook: http://appaloosa.no
 
 M: (+47) 472 71 000 |  skype: alexander-appaloosa
 
 
 twitter: http://twitter.com/alexanderviken
 blog: http://agilemobility.net http://mobilteknologi.no
 bio: http://about.me/alexanderviken
 
 
 
 
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch
 
 
 
 
 -- 
 Nic Wise
 t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
 b. http://www.fastchicken.co.nz/
 
 mobileAgent (for FreeAgent): get your accounts in your pocket.
 http://goo.gl/IuBU
 Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
 Earnest: Self-employed? Track your business expenses and income.
 http://earnestapp.com
 Nearest Bus: find when the next bus is coming to your stop. 
 http://goo.gl/Vcz1p
 London Bike App: Find the nearest Boris Bike, and get riding! 
 http://goo.gl/Icp2

___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Moving from ARM6+7 to just ARM7

2012-08-22 Thread Tim Braun
On Wed, Aug 22, 2012 at 5:01 AM, rnendel11 rnende...@gmail.com wrote:
 I'm assuming this results in a rejection, any experience out there?

There's an optional entry in your Info.plist which will allow you to select 
arm7 as one of the required device capabilities for your application. Our app 
is in review right now, so I can't say for certain that it will pass, but it 
hasn't been rejected for that reason, yet.

Tim Braun
Sr. Design Eng.
Librestream
O: +1.204.487.0612 ext 203
F: +1.204.487.0914
E: tim.br...@librestream.com
http://www.librestream.com
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Moving from ARM6+7 to just ARM7

2012-08-22 Thread rnendel11
I'd love to just go ARM7 and see as part of my IOS6 refresh, but don't think
it's wise to risk the IOS6 timeframe on that experiment.  I'll ask in the
apple forums.



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Moving-from-ARM6-7-to-just-ARM7-tp4656644p4656656.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Random app crash with MKReverseGeocoder

2012-08-22 Thread René Ruppert
Would you mind sharing the working bindings?

Thanks!

René

Am 22.08.2012 um 17:30 schrieb Nic Wise n...@fastchicken.co.nz:

 I've had issues with the TF bindings - I have one which works, but the
 out of the box one doesn't. I think. Been a while since I needed to
 check.
 
 On Wed, Aug 22, 2012 at 2:38 PM, Alexander Viken alexan...@appaloosa.no 
 wrote:
 Hi
 
 I think i have come a bit closer to the problem It's not the geocoder,
 it looks like it's the MonoTouch bindings for TestFlight that is the culprit
 . When i remove all references to TestFlight everything works great.
 
 I use TestFlight in other applications with no problems  but it could be
 that the combination of MapKit/Geocoder and TestFlight that causes this.
 
 Thanx for the link to urgent fixes and tip about using google directly.
 
 alex.
 
 On 22. aug. 2012, at 14:27, Nic Wise n...@fastchicken.co.nz wrote:
 
 I think there _was_ an old iOS6 bug which did this. I ended up using
 google directly:
 
 https://github.com/nicwise/londonbikeapp/blob/master/londonbikeapp/TripLog.cs#L308
 
 This might have been fixed, but a friend had an issue with his (ObjC) app:
 
 Urgent work around fix for reverse geocoding crash in iOS 4.3
 
 http://itunes.apple.com/gb/app/nextbuses/id362006676?mt=8
 
 So it might not be a MT issue
 
 Can you distill it down to a single view app, which does the geocode
 on a given Lat/Lon? to test it out?
 
 
 
 On Wed, Aug 22, 2012 at 12:30 PM, Alexander Viken
 alexan...@appaloosa.no wrote:
 
 Hi All.
 
 I am having a problem with random crashes in a navigation/geotracking app.
 The crash is related to doing reverse lookup for addresses based on
 coordinates at the end of the trip. I am using MKReverseGeocoder and a
 MKReverseGeocoderDelegate class but no matter how much debug info I add to
 the code I still don't get any feedback in the application output or the
 debugger.
 
 The scenario is that when the user click a button to stop the trip they are
 taken to a trip summary view, and I try to reverse lookup the start and end
 addresses. There's no pattern in if it's the start or end address that
 causes the crash it's totally random, and happens 2-3 times out of 10.
 
 Anyone got a clue on how to get (more) output in the debugger for a cause or
 another way to get addresses based on coordinates?
 
 Vennlig hilsen/Kind regards
 
 ALEXANDER VIKEN
 Appaloosa AS  co-founder / Technology Director / MTA (MVP/MCTS/MCP/CSM)
 Appaloosa på Facebook: http://appaloosa.no
 
 M: (+47) 472 71 000 |  skype: alexander-appaloosa
 
 
 twitter: http://twitter.com/alexanderviken
 blog: http://agilemobility.net http://mobilteknologi.no
 bio: http://about.me/alexanderviken
 
 
 
 
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch
 
 
 
 
 --
 Nic Wise
 t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
 b. http://www.fastchicken.co.nz/
 
 mobileAgent (for FreeAgent): get your accounts in your pocket.
 http://goo.gl/IuBU
 Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
 Earnest: Self-employed? Track your business expenses and income.
 http://earnestapp.com
 Nearest Bus: find when the next bus is coming to your stop.
 http://goo.gl/Vcz1p
 London Bike App: Find the nearest Boris Bike, and get riding!
 http://goo.gl/Icp2
 
 
 
 
 
 -- 
 Nic Wise
 t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
 b. http://www.fastchicken.co.nz/
 
 mobileAgent (for FreeAgent): get your accounts in your pocket.
 http://goo.gl/IuBU
 Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
 Earnest: Self-employed? Track your business expenses and income.
 http://earnestapp.com
 Nearest Bus: find when the next bus is coming to your stop. 
 http://goo.gl/Vcz1p
 London Bike App: Find the nearest Boris Bike, and get riding! 
 http://goo.gl/Icp2
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch

___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Dev work

2012-08-22 Thread John Morgan
We are currently evaluating Mono for Android by building an app already built
in .net cf. I would like to find some Monotouch developers to discuss having
them work on an iphone version.  If anyone is interested can you send me an
email.  And sorry for clogging up the forum if this isn't the best place. 





--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Dev-work-tp4656658.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Random app crash with MKReverseGeocoder

2012-08-22 Thread Nic Wise
Yup

the DLL is right out of my (working) project.

the code (seperate zip inside) is what I THINK the bindings are which work.

It was the 1.0 SDK.

http://www.fastchicken.co.nz/ma/TestFlightBindingsAndDll.zip

About 7 meg.



On Wed, Aug 22, 2012 at 9:09 PM, René Ruppert rene.rupp...@gmail.com wrote:
 Would you mind sharing the working bindings?

 Thanks!

 René

 Am 22.08.2012 um 17:30 schrieb Nic Wise n...@fastchicken.co.nz:

 I've had issues with the TF bindings - I have one which works, but the
 out of the box one doesn't. I think. Been a while since I needed to
 check.

 On Wed, Aug 22, 2012 at 2:38 PM, Alexander Viken alexan...@appaloosa.no 
 wrote:
 Hi

 I think i have come a bit closer to the problem It's not the geocoder,
 it looks like it's the MonoTouch bindings for TestFlight that is the culprit
 . When i remove all references to TestFlight everything works great.

 I use TestFlight in other applications with no problems  but it could be
 that the combination of MapKit/Geocoder and TestFlight that causes this.

 Thanx for the link to urgent fixes and tip about using google directly.

 alex.

 On 22. aug. 2012, at 14:27, Nic Wise n...@fastchicken.co.nz wrote:

 I think there _was_ an old iOS6 bug which did this. I ended up using
 google directly:

 https://github.com/nicwise/londonbikeapp/blob/master/londonbikeapp/TripLog.cs#L308

 This might have been fixed, but a friend had an issue with his (ObjC) app:

 Urgent work around fix for reverse geocoding crash in iOS 4.3

 http://itunes.apple.com/gb/app/nextbuses/id362006676?mt=8

 So it might not be a MT issue

 Can you distill it down to a single view app, which does the geocode
 on a given Lat/Lon? to test it out?



 On Wed, Aug 22, 2012 at 12:30 PM, Alexander Viken
 alexan...@appaloosa.no wrote:

 Hi All.

 I am having a problem with random crashes in a navigation/geotracking app.
 The crash is related to doing reverse lookup for addresses based on
 coordinates at the end of the trip. I am using MKReverseGeocoder and a
 MKReverseGeocoderDelegate class but no matter how much debug info I add to
 the code I still don't get any feedback in the application output or the
 debugger.

 The scenario is that when the user click a button to stop the trip they are
 taken to a trip summary view, and I try to reverse lookup the start and end
 addresses. There's no pattern in if it's the start or end address that
 causes the crash it's totally random, and happens 2-3 times out of 10.

 Anyone got a clue on how to get (more) output in the debugger for a cause or
 another way to get addresses based on coordinates?

 Vennlig hilsen/Kind regards

 ALEXANDER VIKEN
 Appaloosa AS  co-founder / Technology Director / MTA (MVP/MCTS/MCP/CSM)
 Appaloosa på Facebook: http://appaloosa.no

 M: (+47) 472 71 000 |  skype: alexander-appaloosa


 twitter: http://twitter.com/alexanderviken
 blog: http://agilemobility.net http://mobilteknologi.no
 bio: http://about.me/alexanderviken




 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch




 --
 Nic Wise
 t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
 b. http://www.fastchicken.co.nz/

 mobileAgent (for FreeAgent): get your accounts in your pocket.
 http://goo.gl/IuBU
 Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
 Earnest: Self-employed? Track your business expenses and income.
 http://earnestapp.com
 Nearest Bus: find when the next bus is coming to your stop.
 http://goo.gl/Vcz1p
 London Bike App: Find the nearest Boris Bike, and get riding!
 http://goo.gl/Icp2





 --
 Nic Wise
 t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
 b. http://www.fastchicken.co.nz/

 mobileAgent (for FreeAgent): get your accounts in your pocket.
 http://goo.gl/IuBU
 Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
 Earnest: Self-employed? Track your business expenses and income.
 http://earnestapp.com
 Nearest Bus: find when the next bus is coming to your stop. 
 http://goo.gl/Vcz1p
 London Bike App: Find the nearest Boris Bike, and get riding! 
 http://goo.gl/Icp2
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch




-- 
Nic Wise
t.  +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise
b. http://www.fastchicken.co.nz/

mobileAgent (for FreeAgent): get your accounts in your pocket.
http://goo.gl/IuBU
Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa
Earnest: Self-employed? Track your business expenses and income.
http://earnestapp.com
Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p
London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2
___
MonoTouch mailing list
MonoTouch@lists.ximian.com

Re: [MonoTouch] Uitableview with images .. slow scrolling

2012-08-22 Thread Craig Dunn
oh, also, i forgot this sample
https://github.com/xamarin/monotouch-samples/tree/master/LazyTableImages
(unfortunately it's a bit old, but might be useful reference)

On Wed, Aug 22, 2012 at 8:00 PM, Wally McClure 
theevilprogram...@hotmail.com wrote:

 Apologies for just noticing this thread.  I would wrap this up in a thread
 so that the download of the image takes place off the main thread.  I've
 written about how to do this in:

 http://www.devproconnections.com/article/mobile-development/ios-uitableview-141550

 I use a threadpool thread (I'm so .NET 1.0) and it works pretty well.  You
 can do this many different ways.  I've also tried with the TPL and had
 success.

 Wally

 --
 Date: Tue, 21 Aug 2012 20:09:16 -0500
 From: ja...@awbrey.net
 To: a-alma...@hotmail.com
 CC: monotouch@lists.ximian.com
 Subject: Re: [MonoTouch] Uitableview with images .. slow scrolling


 look at how it's used in Elements.cs


 https://github.com/migueldeicaza/MonoTouch.Dialog/blob/master/MonoTouch.Dialog/Elements.cs

 On Tue, Aug 21, 2012 at 8:00 PM, Aziz a-alma...@hotmail.com wrote:

 I'm sorry for miss understanding ..!!

 but I have problem with the second arrg:  IImageUpdated
 I do't need any thing to call when the request complete ..what I need to
 assigin the image to cell.ImageView.Image

 : (



 --
 View this message in context:
 http://monotouch.2284126.n4.nabble.com/Uitableview-with-images-slow-scrolling-tp4656636p4656641.html
 Sent from the MonoTouch mailing list archive at Nabble.com.
 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch



 ___ MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch

 ___
 MonoTouch mailing list
 MonoTouch@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/monotouch


___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch