Re: [MonoTouch] Cannot synch Xcode changes in Monotouch

2012-06-11 Thread rnendel11
I tested the BETA version on my current project.  Stepping down through the
xib's, I:
1. Open xib into IB
2. Wait for files to index
3. Add a round rect button at some random position in the view
4. Add an outlet for the button
5. Save and exit IB
6. Watch for sync

Everything worked well, for 5 xib's, then the sync did not occur on the 6th
- working in rapid succession.  Reloaded the 6th, exited xCode and it did
sync. - the situation with IB has greatly improved, but there's still an
issue.

Also, Save isn't required at this point.  If you make a change and simply
exit IB, a sync occurs and changes are made.  This could be bad in there's
no way to actually discard changes short of killing monotouch and then
killing IB, it would seem.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Cannot-synch-Xcode-changes-in-Monotouch-tp4655234p4655285.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] Cannot synch Xcode changes in Monotouch

2012-06-09 Thread Jeff Stedfast
Can you try the MonoDevelop 3.0.3.1 beta? It *should* be fixed now...

Thanks,

Jeff

On Thu, Jun 7, 2012 at 5:09 PM, rnendel11 rnende...@gmail.com wrote:

 Right now it is a pain.  There seems also to be a problem with Actions
 being
 stripped from the resulting monotouch files.  You can load the IB again
 into
 xCode, the actions show up sometimes, but inevitably the actions are gone
 from both side of things.

 What I do, until this is fixed - is 1. Quit monodevelop, 2. Restart
 monodevelop, 3. Edit an IB (launches xCode), 4. Wait patiently for 115
 files
 so synchronize, 5. Make changes, 6. without exiting xCode, switch to
 monodevelop and click on whatever c# file is currently open, this signals
 monotouch to sync the files - if you don't see the sync progress bar
 appear,
 then 6.b switch back to xCode, save again, rinse and repeat - 7. once I see
 the sync occur using the above method, switch back to xCode and exit -
 should produce a final sync.

 This is the only way I've found to ensure that a sync will occur, other
 than rubbing various good luck charms scattered around my mac mini.

 The best luck I've had is first to always remember to just quit
 monodevelop,
 re-start it, then edit an IB - rinse and repeat if you have many IBs to
 update.

 --
 View this message in context:
 http://monotouch.2284126.n4.nabble.com/Cannot-synch-Xcode-changes-in-Monotouch-tp4655234p4655252.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


Re: [MonoTouch] Cannot synch Xcode changes in Monotouch

2012-06-07 Thread Jeff Stedfast
Hi Elena,

Could you submit a bug report to http://bugzilla.xamarin.com (file it under
MonoDevelop / iPhone Add-in)?

Once thing you could try, if you aren't already doing it, is to go to each
of the files you've changed in Xcode and saving them before swapping back
to MonoDevelop. This might help, but I'm not sure.

Normally, when you switch back to MonoDevelop, MonoDevelop tells Xcode to
save all of its unsaved documents and then it iterates over all of the
files, comparing timestamps to see which files need to be synced back to
MonoDevelop.

However, there is a timeout on the save unsaved documents command sent to
Xcode (30 seconds per document iirc), and so it might be possible that
Xcode isn't saving one (or more?) of them fast enough causing some sort of
race condition in the sync-back logic.

This is all just speculation, of course, so it might not help, but it might
be worth a try.

Jeff

On Thu, Jun 7, 2012 at 6:54 AM, Elena inpasara...@gmail.com wrote:

 Hello!

 My name is Elena. Can somebody solve the following problem.

 Some of the changes which have made on Xcode 4.3.2 doesnt showed up after
 build in Monotouch ( 3.0.2)

 I found a similar topic

 http://monotouch.2284126.n4.nabble.com/Delay-in-syncing-xcode-4-IB-changes-with-Monotouch-td4166543.html
 Where it was said that the bug would be fixed in 2.8.5.
 But i still have it.
 Maybe i am doing something wrong, and there is another reason for not
 updating changes in some files
 Note: i have this problem only with some xib files. Other files updating
 well.

 I will appreciate any help in this question.
 Thanks in advance


 --
 View this message in context:
 http://monotouch.2284126.n4.nabble.com/Cannot-synch-Xcode-changes-in-Monotouch-tp4655234.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


Re: [MonoTouch] Cannot synch Xcode changes in Monotouch

2012-06-07 Thread Nic Wise
Jeff, I suspect this might be the same issue:

https://bugzilla.xamarin.com/show_bug.cgi?id=5569

I've seen a few others on the list with the same problem. I dont
normally use IB, so I've not seen it until today

On Thu, Jun 7, 2012 at 5:36 PM, Jeff Stedfast j...@xamarin.com wrote:
 Hi Elena,

 Could you submit a bug report to http://bugzilla.xamarin.com (file it under
 MonoDevelop / iPhone Add-in)?

 Once thing you could try, if you aren't already doing it, is to go to each
 of the files you've changed in Xcode and saving them before swapping back to
 MonoDevelop. This might help, but I'm not sure.

 Normally, when you switch back to MonoDevelop, MonoDevelop tells Xcode to
 save all of its unsaved documents and then it iterates over all of the
 files, comparing timestamps to see which files need to be synced back to
 MonoDevelop.

 However, there is a timeout on the save unsaved documents command sent to
 Xcode (30 seconds per document iirc), and so it might be possible that Xcode
 isn't saving one (or more?) of them fast enough causing some sort of race
 condition in the sync-back logic.

 This is all just speculation, of course, so it might not help, but it might
 be worth a try.

 Jeff


 On Thu, Jun 7, 2012 at 6:54 AM, Elena inpasara...@gmail.com wrote:

 Hello!

 My name is Elena. Can somebody solve the following problem.

 Some of the changes which have made on Xcode 4.3.2 doesnt showed up after
 build in Monotouch ( 3.0.2)

 I found a similar topic

 http://monotouch.2284126.n4.nabble.com/Delay-in-syncing-xcode-4-IB-changes-with-Monotouch-td4166543.html
 Where it was said that the bug would be fixed in 2.8.5.
 But i still have it.
 Maybe i am doing something wrong, and there is another reason for not
 updating changes in some files
 Note: i have this problem only with some xib files. Other files updating
 well.

 I will appreciate any help in this question.
 Thanks in advance


 --
 View this message in context:
 http://monotouch.2284126.n4.nabble.com/Cannot-synch-Xcode-changes-in-Monotouch-tp4655234.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




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

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
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
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] Cannot synch Xcode changes in Monotouch

2012-06-07 Thread Jeff Stedfast
Hi Nic, Elena,

The IsDerived() bug was supposedly fixed by Mike Krueger for 3.0.3 (going
thru QA right now), so if that's the problem then 3.0.3 should solve that.

Jeff

On Thu, Jun 7, 2012 at 1:05 PM, Nic Wise n...@fastchicken.co.nz wrote:

 Jeff, I suspect this might be the same issue:

 https://bugzilla.xamarin.com/show_bug.cgi?id=5569

 I've seen a few others on the list with the same problem. I dont
 normally use IB, so I've not seen it until today

 On Thu, Jun 7, 2012 at 5:36 PM, Jeff Stedfast j...@xamarin.com wrote:
  Hi Elena,
 
  Could you submit a bug report to http://bugzilla.xamarin.com (file it
 under
  MonoDevelop / iPhone Add-in)?
 
  Once thing you could try, if you aren't already doing it, is to go to
 each
  of the files you've changed in Xcode and saving them before swapping
 back to
  MonoDevelop. This might help, but I'm not sure.
 
  Normally, when you switch back to MonoDevelop, MonoDevelop tells Xcode to
  save all of its unsaved documents and then it iterates over all of the
  files, comparing timestamps to see which files need to be synced back to
  MonoDevelop.
 
  However, there is a timeout on the save unsaved documents command sent to
  Xcode (30 seconds per document iirc), and so it might be possible that
 Xcode
  isn't saving one (or more?) of them fast enough causing some sort of race
  condition in the sync-back logic.
 
  This is all just speculation, of course, so it might not help, but it
 might
  be worth a try.
 
  Jeff
 
 
  On Thu, Jun 7, 2012 at 6:54 AM, Elena inpasara...@gmail.com wrote:
 
  Hello!
 
  My name is Elena. Can somebody solve the following problem.
 
  Some of the changes which have made on Xcode 4.3.2 doesnt showed up
 after
  build in Monotouch ( 3.0.2)
 
  I found a similar topic
 
 
 http://monotouch.2284126.n4.nabble.com/Delay-in-syncing-xcode-4-IB-changes-with-Monotouch-td4166543.html
  Where it was said that the bug would be fixed in 2.8.5.
  But i still have it.
  Maybe i am doing something wrong, and there is another reason for not
  updating changes in some files
  Note: i have this problem only with some xib files. Other files updating
  well.
 
  I will appreciate any help in this question.
  Thanks in advance
 
 
  --
  View this message in context:
 
 http://monotouch.2284126.n4.nabble.com/Cannot-synch-Xcode-changes-in-Monotouch-tp4655234.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
 



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

 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
 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
 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] Cannot synch Xcode changes in Monotouch

2012-06-07 Thread Nic Wise
Cool! I'll keep an eye out for 3.0.3 :)

On Thu, Jun 7, 2012 at 7:03 PM, Jeff Stedfast j...@xamarin.com wrote:
 Hi Nic, Elena,

 The IsDerived() bug was supposedly fixed by Mike Krueger for 3.0.3 (going
 thru QA right now), so if that's the problem then 3.0.3 should solve that.

 Jeff


 On Thu, Jun 7, 2012 at 1:05 PM, Nic Wise n...@fastchicken.co.nz wrote:

 Jeff, I suspect this might be the same issue:

 https://bugzilla.xamarin.com/show_bug.cgi?id=5569

 I've seen a few others on the list with the same problem. I dont
 normally use IB, so I've not seen it until today

 On Thu, Jun 7, 2012 at 5:36 PM, Jeff Stedfast j...@xamarin.com wrote:
  Hi Elena,
 
  Could you submit a bug report to http://bugzilla.xamarin.com (file it
  under
  MonoDevelop / iPhone Add-in)?
 
  Once thing you could try, if you aren't already doing it, is to go to
  each
  of the files you've changed in Xcode and saving them before swapping
  back to
  MonoDevelop. This might help, but I'm not sure.
 
  Normally, when you switch back to MonoDevelop, MonoDevelop tells Xcode
  to
  save all of its unsaved documents and then it iterates over all of the
  files, comparing timestamps to see which files need to be synced back to
  MonoDevelop.
 
  However, there is a timeout on the save unsaved documents command sent
  to
  Xcode (30 seconds per document iirc), and so it might be possible that
  Xcode
  isn't saving one (or more?) of them fast enough causing some sort of
  race
  condition in the sync-back logic.
 
  This is all just speculation, of course, so it might not help, but it
  might
  be worth a try.
 
  Jeff
 
 
  On Thu, Jun 7, 2012 at 6:54 AM, Elena inpasara...@gmail.com wrote:
 
  Hello!
 
  My name is Elena. Can somebody solve the following problem.
 
  Some of the changes which have made on Xcode 4.3.2 doesnt showed up
  after
  build in Monotouch ( 3.0.2)
 
  I found a similar topic
 
 
  http://monotouch.2284126.n4.nabble.com/Delay-in-syncing-xcode-4-IB-changes-with-Monotouch-td4166543.html
  Where it was said that the bug would be fixed in 2.8.5.
  But i still have it.
  Maybe i am doing something wrong, and there is another reason for not
  updating changes in some files
  Note: i have this problem only with some xib files. Other files
  updating
  well.
 
  I will appreciate any help in this question.
  Thanks in advance
 
 
  --
  View this message in context:
 
  http://monotouch.2284126.n4.nabble.com/Cannot-synch-Xcode-changes-in-Monotouch-tp4655234.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
 



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

 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
 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
 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/

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
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
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