Re: [MonoTouch] IOS 6 + reference count alert send by Xam

2012-08-16 Thread rnendel11
Given the urgency of this issue, I'm a bit leery of just recompiling now and
submitting a new version.  Are we sure that all is good and OK with the
recommended .13 build?  Or should I wait just a tad longer.. some guidance
appreciated.



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/IOS-6-reference-count-alert-send-by-Xam-tp4656507p4656541.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] IOS 6 + reference count alert send by Xam

2012-08-16 Thread rnendel11
To clarify - I get this is a significant issue and the pressure is on, but
oftentimes in these situations stop-gap solutions just lead to further
delays.  Not meaning to be negative, just realistic because of the delay in
apple review.  Each time I reject then update a binary puts me at the end of
the queue, so trying to avoid any uncertainty and going with a good/known -
hope that comes across as intended :-)




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/IOS-6-reference-count-alert-send-by-Xam-tp4656507p4656542.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] Showcase submission

2012-08-16 Thread John Hair
I found this: http://xamarin.com/apps/

Looks like the page has lost its formatting and the Showcase link from 
there fails.


 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: rnendel11 rnende...@gmail.com
Sent: 16 August 2012 07:59
To: monotouch@lists.ximian.com
Subject: [MonoTouch] Showcase submission

What is the URL/link for submitting an app for a Xamarin showcase? Saw it
once, been searching off and on all evening, can't find it again... 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Showcase-submission-tp4656540.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] Problem while performing dual operation on UIImageView

2012-08-16 Thread pritish
Hi To All,

 This time I am facing problem while performing dual operation on
UIImageView means

1) Zoom+Flip the Image
2)Zoom + Reverse the Image 
3)Zoom + Flip or Reverse + Rotate(+- 90)deg

so please help to find out the solution of this problem.




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Problem-while-performing-dual-operation-on-UIImageView-tp4656544.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] Problem while performing dual operation on UIImageView

2012-08-16 Thread Jason Awbrey
What exactly is the problem you're having?  Can you show us the code you're
using to do this with?

On Thu, Aug 16, 2012 at 7:04 AM, pritish
pritish_deshm...@medsynaptic.comwrote:

 Hi To All,

  This time I am facing problem while performing dual operation on
 UIImageView means

 1) Zoom+Flip the Image
 2)Zoom + Reverse the Image
 3)Zoom + Flip or Reverse + Rotate(+- 90)deg

 so please help to find out the solution of this problem.




 --
 View this message in context:
 http://monotouch.2284126.n4.nabble.com/Problem-while-performing-dual-operation-on-UIImageView-tp4656544.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] Problem while performing dual operation on UIImageView

2012-08-16 Thread pritish
Yes but first I'll tell you what exact the problem When I Zoom In or Zoom Out
the image the at the same time I want to rotate (+-90 deg) or Flip or
Reverse the Image at exact zoom In or Zoom Out Position but that time Image
get reset then perform the respective operation such rotate, flip ,reverse I
wanted to do it simultaneously on UIImage
 
if (btnNames == Rotate R)
{   

Angle = deg + 90;
imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
return Angle;

} else
{
Angle = deg - 90;
imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
return Angle;
}

reverse
CGAffineTransform transform = CGAffineTransform.MakeScale (-1, 1);
imgView.Transform = transform;
return  true;

if (flips == false)
{
CGAffineTransform transform = 
CGAffineTransform.MakeScale (1, -1);
imgView.Transform = transform;
return  true;
} 
this code i implemented it works fine individually perform to operation. but
You Now you what I want to 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Problem-while-performing-dual-operation-on-UIImageView-tp4656544p4656546.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] Retrieving EXIF (GPS) data from UIImage

2012-08-16 Thread ric3kg
I'm trying to retrieve GPS data from photo imported from a Photo Album. Apple
has a tech note on how to do this
(http://developer.apple.com/library/ios/ipad/#qa/qa1654/_index.html). But I
can't find CGImageSourceRef in Monotouch. Am I missing something? I'm using
Monotouch 5.2.13.

I can get the data from AssetLibrary calls but how does one get there from
an UIImage object?

Thanks,
Rick



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Retrieving-EXIF-GPS-data-from-UIImage-tp4656547.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] Installing your own issued client certificates to the IPhone

2012-08-16 Thread Mike Murdock
Has anyone done this or can point me to article where this was done etc. This 
is creating your own certificates and trying to push them to your 
application/device.


Michael Murdock
Software Engineer

(865) 482-1999
(865) 481-0921 fax
www.allmeds.comhttp://www.allmeds.com


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


[MonoTouch] Saving Zoomed/Panned image from ScrollView

2012-08-16 Thread ric3kg
I'm trying to create an edit image layout similar to UIImagePicker, that lets
the user zoom and pan, then save the visible results. I see the sample
project Zoom a ScrollView which I can get working, but I'm stumped trying
to get the visible portion of the image saved as a new image. Any clues
would be much appreciated.

Thanks,
Rick



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Saving-Zoomed-Panned-image-from-ScrollView-tp4656549.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] Behavior of Dns.BeginGetHostEntry

2012-08-16 Thread rnendel11
This may be an IOS thing, but wanted to ask/mention.  When
detecting/acquiring host entries for the local machine, I run identical code
on Windows and an iDevice.  Specifically Dns.BeginGetHostEntry. 

On a Windows box, running .net 3.5, in the absence of a DNS server, this
operation still succeeds and I acquire the local addresses.

However, in experimenting with ad-hoc wireless, in the absence of a DNS
server, I am finding the iDevice - having failed to find a DNS server, falls
back to MDNS (multicast DNS) queries to a 224.x.x.x address.  After failing
that, acquisition of local host addresses fails.

So, the same code is behaving very differently in .net applications in the
same situation.  

Is there any other means of acquiring local device addresses other than
through Dns.BeginGetHostEntry using the local hostname?  Is this a problem
with the MT implementation of Dns.BeginGetHostEntry or with IOS (I'm
assuming it is an issue with IOS as the fallback to MDNS is well
documented).



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Behavior-of-Dns-BeginGetHostEntry-tp4656550.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] Retrieving EXIF (GPS) data from UIImage

2012-08-16 Thread Craig Dunn
Just to clarify, you can't get this info from a UIImage object, because
that object is just for loading/displaying images.

You *can* get the info direct from an image *file* (with an NSUrl
reference) using the ImageIO framework (as per that example you linked to).
Here's the MonoTouch equiv...

// Ensure you have these 'using'

using MonoTouch.Foundation;

using MonoTouch.UIKit;

using MonoTouch.CoreFoundation;

using MonoTouch.ImageIO;


// Then put this in your code somewhere

var url = new NSUrl(myPhoto.JPG, false);  // could be an NSUrl to asset
lib...

CGImageSource myImageSource;

myImageSource = CGImageSource.FromUrl (url, null);

var ns = new NSDictionary();

var imageProperties = myImageSource.CopyProperties(ns, 0);

var width = imageProperties[CGImageProperties.PixelWidth];

var height = imageProperties[CGImageProperties.PixelHeight];

Console.WriteLine(Dimensions: {0}x{1}, width, height);

// Output all teh things

Console.WriteLine(imageProperties.DescriptionInStringsFileFormat)


HTH
craig






On Thu, Aug 16, 2012 at 10:55 PM, ric3kg rickgr...@mac.com wrote:

 I'm trying to retrieve GPS data from photo imported from a Photo Album.
 Apple
 has a tech note on how to do this
 (http://developer.apple.com/library/ios/ipad/#qa/qa1654/_index.html). But
 I
 can't find CGImageSourceRef in Monotouch. Am I missing something? I'm using
 Monotouch 5.2.13.

 I can get the data from AssetLibrary calls but how does one get there from
 an UIImage object?

 Thanks,
 Rick



 --
 View this message in context:
 http://monotouch.2284126.n4.nabble.com/Retrieving-EXIF-GPS-data-from-UIImage-tp4656547.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] Behavior of Dns.BeginGetHostEntry

2012-08-16 Thread rnendel11
Please ignore this, will delete the post.  The problem is not with host
address resolution, IGMP for multicast group membership is not being
transmitted when connected adhoc.




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Behavior-of-Dns-BeginGetHostEntry-tp4656550p4656552.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