Re: [MonoTouch] Migrate app to IOS7

2013-09-22 Thread Jason Awbrey
if your app is build using standard UIKIt elements without any custom UI,
it will get the updated iOS7 look without you having to do anything

https://developer.apple.com/library/ios/documentation/userexperience/conceptual/TransitionGuide/index.html




On Sat, Sep 21, 2013 at 6:42 PM, Alejandro Vazquez wrote:

> Hi,
>
> I have some apps running for IOS6 and would like to migrate them so they
> have look & feel for IOS7.
>
> Do I have to do anything special to migrate an app?
>
> Thanks a lot,
>
> Alejandro
>
> ___
> 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] ios7 grouped tableview no longer grouped?

2013-09-22 Thread Jason Awbrey
look at the "TableView" section of the Transition Guide

https://developer.apple.com/library/ios/documentation/userexperience/conceptual/TransitionGuide/ContentViews.html#//apple_ref/doc/uid/TP40013174-CH10-SW1

the Grouped style is still supported, but it looks different visually -
grouped cells are no longer offset and take up the full width of the view


On Sun, Sep 22, 2013 at 2:47 AM, Guido Van Hoecke  wrote:

> Hi,
>
> Grouped tableviews of my apps are no longer grouped when compiled with
> sdk ios 7.
>
> Is this upward incompatibility known / expected?
>
>
> Guido
>
> --
> The only people who make love all the time are liars.
> -- Louis Jordan
> ___
> 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] Excel Library

2013-07-12 Thread Jason Awbrey
might be worth a look...

http://stackoverflow.com/questions/11775661/how-can-i-create-excel-sheet-and-file-in-iphone-sdk



On Fri, Jul 12, 2013 at 10:05 AM, Juan M Gómez wrote:

> Hi Nic,
> I tried it, but it has a lot of dependencies.. I also tried Koogra (
> http://sourceforge.net/projects/koogra/) which has less dependencies, but
> without luck. :-(
>
> Juan M Gómez
> *Contractor Software Engineer*
> juamangom...@gmail.com
> www.jmgomez.me 
>
>[image: twitter]  [image: 
> linkedIn]
>
>
>
>
> 2013/7/12 Nic Wise 
>
>> I've used this on the full framework, but not on X.iOS
>>
>> http://epplus.codeplex.com/
>>
>> Worked well :)
>>
>>
>> On 12 July 2013 15:52, Juan M Gómez  wrote:
>>
>>> Hi,
>>> I need to parse some data from an excel, so I'm wondering if somebody
>>> knows a library that allows at least reading access.
>>>
>>> cheers
>>>
>>> Juan M Gómez
>>> *Contractor Software Engineer*
>>> juamangom...@gmail.com
>>> www.jmgomez.me 
>>>
>>>[image: twitter]  [image: 
>>> linkedIn]
>>>
>>>
>>>
>>> ___
>>> MonoTouch mailing list
>>> MonoTouch@lists.ximian.com
>>> http://lists.ximian.com/mailman/listinfo/monotouch
>>>
>>>
>>
>>
>> --
>> Nic Wise
>> t.  +44 7788 592 806 | @fastchicken
>> b. http://www.fastchicken.co.nz/
>>
>
>
> ___
> 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] Adding a button type to an existing button

2013-06-05 Thread Jason Awbrey
 var button = UIButton.FromType(UIButtonType.RoundedRect);

 button.frame = new RectangleF(x, y, width, height);



On Wed, Jun 5, 2013 at 5:31 AM, Paul Johnson wrote:

> Hi,
>
> I'm creating buttons dynamically based on results from a database. While
> this is a very simple operation, I'm stumped on how to set the button to
> have rounded edges.
>
> I'm creating the buttons like this
>
> UIButton foo = new UIButton(new RectangleF(x, y, width, height);
>
> I can't use foo.ButtonType as ButtonType is only a get
>
> Is there a way to set the type once the button has been instantated or do
> I need to create the button another way?
>
> Paul
> --
> "Space," it says, "is big. Really big. You just won't believe how vastly,
> hugely, mindbogglingly big it is. I mean, you may think it's a long way
> down the road to the chemist's, but that's just peanuts to space, listen..."
> Hitch Hikers Guide to the Galaxy, a truly remarkable book!
>
> __**_
> 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] Adding the contents of a list to a MTD

2013-06-04 Thread Jason Awbrey
you should be able to do something like this

new Section (){
from name in myList
select (Element) new RadioElement (name, "mygroup")
}



On Tue, Jun 4, 2013 at 8:33 PM, Paul Johnson wrote:

> Hi,
>
> Got an interesting one here.
>
> I have a list of strings that I want to put into a RadioGroups set of
> RadioElements.
>
> I thought that I could do something like
>
> var section = new Section()
> {
>   foreach(string s in myList)
> new RadioElement(s, "mygroup"),
> }
>
> but that's no good (you can't use a foreach inside of the section).
>
> Next idea was to create a List Only problem there is that you still can't add the list contents to the
> section.
>
> Is there a way to do this?
>
> Paul
> --
> "Space," it says, "is big. Really big. You just won't believe how vastly,
> hugely, mindbogglingly big it is. I mean, you may think it's a long way
> down the road to the chemist's, but that's just peanuts to space, listen..."
> Hitch Hikers Guide to the Galaxy, a truly remarkable book!
>
> __**_
> 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] Changing the text in a BooleanElement

2013-06-04 Thread Jason Awbrey
I don't think so.  You probably need to subclass it and override the
Summary method

public override string Summary ()
{
return val ? "On".GetText () : "Off".GetText ();
}   




On Tue, Jun 4, 2013 at 7:32 PM, Paul Johnson wrote:

> Hi,
>
> Is there a way to alter the text in a BooleanElement from On/Off to (say)
> Male/Female?
>
> Paul
> --
> "Space," it says, "is big. Really big. You just won't believe how vastly,
> hugely, mindbogglingly big it is. I mean, you may think it's a long way
> down the road to the chemist's, but that's just peanuts to space, listen..."
> Hitch Hikers Guide to the Galaxy, a truly remarkable book!
>
> __**_
> 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] Can this be done with monotouch?

2013-05-09 Thread Jason Awbrey
All buttons could have the same handler, then could route based on
whatever the user had defined the button as

Pretty sure this is a standard pattern, but the name escapes me at the moment.

Sent from my iPad

On May 9, 2013, at 7:27 PM, Paul Johnson  wrote:

> Hi,
>
> I'm working on an app which has to be as flexible as possible. The idea is 
> that when the app is first run, the user gets to set up buttons on a screen, 
> these buttons have a picture on them - so picture 1 may have doors, and 
> picture 2 have windows for user 1. User 2 may have them set the other way 
> around.
>
> There is a finite number of pictures available to the user.
>
> The problem doesn't come with the generation of the user interface, but in 
> the event handling. As the buttons are defined by the user, I can statically 
> have button 1 starting the doors class when it could equally be windows or 
> chimneys etc.
>
> Is there a way to launch the correct class depending on what the user has 
> defined?
>
> Paul
> --
> "Space," it says, "is big. Really big. You just won't believe how vastly, 
> hugely, mindbogglingly big it is. I mean, you may think it's a long way down 
> the road to the chemist's, but that's just peanuts to space, listen..."
> Hitch Hikers Guide to the Galaxy, a truly remarkable book!
>
> ___
> 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] Open a PDF with the built in PDF Viewer without closing the Application.

2013-04-23 Thread Jason Awbrey
here's another sample -
https://github.com/xamarin/monotouch-samples/tree/master/ZoomingPdfViewer

you can also do this using a UIWebView to display the PDF


On Tue, Apr 23, 2013 at 7:33 AM, Nic Wise  wrote:

> Yes, it is :)
>
> https://gist.github.com/nicwise/5443188
>
> Also, look at QLPreviewController and see whats out there. I'm pushing
> it, but you can also present it like any other view controller.
>
> On 23 April 2013 13:28, madhusudhan reddy 
> wrote:
> > Is it possible to open a pdf using the built in PDF viewer? The same one
> > that is used if I open a PDF from my iBooks?
> > And also it should be  done without having to leave the app
> >
> >
> > ___
> > MonoTouch mailing list
> > MonoTouch@lists.ximian.com
> > http://lists.ximian.com/mailman/listinfo/monotouch
> >
>
>
>
> --
> Nic Wise
> t.  +44 7788 592 806 | @fastchicken
> b. http://www.fastchicken.co.nz/
> ___
> 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] Finding the registered devices for a user

2013-04-22 Thread Jason Awbrey
I would be really shocked if Apple gave you a way to get a list of all
devices belonging to a particular ID

I'm not really sure that what you want to do would be past the review
process, even if you could find a way to make it work.


On Mon, Apr 22, 2013 at 7:51 PM, Paul Johnson
wrote:

> Hi,
>
> According to Apple, if I purchase an app, I am entitled to install it on
> any device registered to me - in other words, 1 licence for multiple
> devices.
>
> I'm working on an app at the moment which works on a licence basis of up
> to 5 devices, 6 - 10 and 10+ devices. Problem is the code uses the UniqueID
> which was deprecated in iOS5 and for this task is wrong anyway.
>
> One solution is to interrogate the device id numbers Apple uses for a
> particular username and password. I'm not sure what they call it though so
> haven't been able to look it up.
>
> Does anyone know if this is even possible and if it is, the best way to do
> it?
>
> Thanks
>
> Paul
> --
> "Space," it says, "is big. Really big. You just won't believe how vastly,
> hugely, mindbogglingly big it is. I mean, you may think it's a long way
> down the road to the chemist's, but that's just peanuts to space, listen..."
> Hitch Hikers Guide to the Galaxy, a truly remarkable book!
>
> __**_
> 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] Tour Photo Gallery

2013-04-18 Thread Jason Awbrey
downloading a photo (or anything) is easy - just do it the same way you
would in standard .NET - using a WebClient or other similar approach

you can't overwrite embedded content in your app - but you can save the
downloaded files in a folder, and then have your app check if new content
is available, then download and display them, otherwise display the ones
embedded in the app


On Thu, Apr 18, 2013 at 9:14 AM, Alejandro Vazquez wrote:

> Hi,
>
> Im building a tour photo gallery app and right now all the photos are
> embedded as "Content" into the app. The problem Im facing right now is that
> the photos are going to be updated every month and I don't want to build a
> new version every month.
>
> The first approach that I was thinking is to download the updated photos
> and store them in the app but don't have a clue on how can I download a
> photo and then update the embedded content photo with the new one.
>
> The second approach is myabe show them on demand, the problem with this
> option is that I would need internet access.
>
> Any recommendation on how to do this or the best way to do it? In case you
> think the first approach is fine, then how can I store a downloaded photo
> and update a "Content" resource?
>
> Thanks in advance!
>
> Alejandro
>
> ___
> 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] Twin forums

2013-02-24 Thread Jason Awbrey
there was discussion of this when the new forums launched - the forums are
the preferred method for discussion now, but the mailing list is being kept
around for those of us who are used to using it (or are too lazy to change)

http://blog.xamarin.com/introducing-the-xamarin-forums/




On Sun, Feb 24, 2013 at 12:08 PM, technohead wrote:

> Hi all,
>been meaning to ask this for awhile, but wondering why there are another
> group of forums for Xamarin products (http://forums.xamarin.com)? I've
> been
> mostly coming to this one, but I think the other one seems to be a bit more
> lively right now.
>
> Dennis
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Twin-forums-tp4658110.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] Reduce Image Size but not Quality

2013-02-14 Thread Jason Awbrey
you either have to increase the compression ratio and/or scale down the
resolution of the image.  You can't make the file smaller without somehow
changing the quality


On Thu, Feb 14, 2013 at 6:21 PM, Matronix  wrote:

> I'm trying to be able to take a picture from an iPhone/iPad and then send
> the
> picture to a server for processing. The issue I am having is that when I
> take the picture it is 4mb plus and is just too large. I want to reduce the
> file's size but not the quality.  How would that be done?
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Reduce-Image-Size-but-not-Quality-tp4658070.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] MonoDevelop integration with TestFlight

2013-02-07 Thread Jason Awbrey
the free trial ONLY allows you to test in the simulator.  You must have a
license to deploy to an actual iOS device, which means you cannot publish
to testflight


On Thu, Feb 7, 2013 at 8:04 AM, Konaju Games (Dev)  wrote:

> The Publish to TestFlight menu item only shows disabled for me if I have a
> iPhoneSimulator configuration selected.  Selecting either Debug|iPhone or
> Release|iPhone enables the TestFlight menu item.
>
> ___
> 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] MonoDevelop integration with TestFlight

2013-02-07 Thread Jason Awbrey
do you have a MT license, or are you using the free trial version?


On Thu, Feb 7, 2013 at 7:30 AM, laithenator  wrote:

> Hello,
>
> I am using MonoDevelop 3.0.6 and I have pretty much looked everywhere for
> instructions on how to publish to test flight as my menu option is disabled
> but can't really find much.
>
> Is it possible to get step-by-step instructions on how to publish from
> MonoDevelop to Testflight please? Or if there is a link somewhere that you
> can point me to, I would be most grateful.
>
> Thank you in advance.
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/MonoDevelop-integration-with-TestFlight-tp4401689p4658057.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] trouble with 1st gen ipad after latest MonoTouch update..

2013-01-29 Thread Jason Awbrey
I have a 1st gen iPad - I'd be happy to try a test build on it for
comparison


On Tue, Jan 29, 2013 at 5:28 PM, David Jeske  wrote:

> I have created a bug report including a crash...
>
>https://bugzilla.xamarin.com/show_bug.cgi?id=9866
>
> I also have some additional insight. I'm less convinced the crashes are
> related to the problem. It seems to me some kind of IO stalling might be
> behind all of the issues we're seeing. -- aka... The debugger won't
> connect; the console output doesn't show in MonoDevelop until I "stop" the
> app; and our app's http streams seem to stall and stop fetching.
>
> I've considered the possibility that there is something broken about this
> physical hardware, but all other (non MonoTouch) apps on the device seem
> fine.
>
>
>
> ___
> 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] MonoTouch Call RabbitMQ .NET DLL File : throw 'Could not load type' error

2013-01-18 Thread Jason Awbrey
System.Configuration does not exist in MT. iOS does not provide any sort of
underlying mechanism for this kind of configuration management

and, Rolf has already answered your question on SO:
http://stackoverflow.com/questions/14372207/monotouch-call-rabbitmq-net-dll-file-throw-could-not-load-type-error



On Thu, Jan 17, 2013 at 12:44 AM, uniguyit  wrote:

> I am a MonoTouch developer, i am writting a project for sending RabbitMQ
> message to a server, i have a .NET Project ( Using VS 2010) to Call
> RabbitMQ
> .NET Client DLL File to send RabbitMQ message is correct, but When i
> reference this .NET Client DLL File(RabbitMQ.Client.dll) to MonoTouch iOS
> Project, and call sending message method, it throws this error message:
>
> could not load type 'System.configuration.ConfigurationSettings' from
> assembly 'RabbitMQ.Client'
>
> Help!
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/MonoTouch-Call-RabbitMQ-NET-DLL-File-throw-Could-not-load-type-error-tp4657960.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] MFMailComposeViewController AddAttachmentData PDF not working

2012-12-11 Thread Jason Awbrey
that's how I've done it in the past, but using NSData.FromUrl()

are you sure the PDF in "path" is valid?


On Tue, Dec 11, 2012 at 11:44 AM, Matronix  wrote:

> I am trying to send a PDF from my app in an email.  The email sends
> successful and when I look at the PDF attachment in my email (Gmail,
> desktop) the attachment looks like a broken image and doesn't have a way to
> download the file.  If I view the email on the iPad's mail app, the pdf
> shows up as an image in the email.  How do I successfully attach a PDF to
> an
> email so that it can be downloaded/viewed on any email client like a normal
> emailed attachment?
>
>
> NSData pdf = NSData.FromFile(path);
> mailController.AddAttachmentData(pdf, "application/pdf", "Result.pdf");
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/MFMailComposeViewController-AddAttachmentData-PDF-not-working-tp4657826.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] Why does the UIAlertView not appear immediately?

2012-12-09 Thread Jason Awbrey
are you executing on the UI thread?


On Sun, Dec 9, 2012 at 4:10 PM, Guido Van Hoecke  wrote:

> Good Evening to All,
>
> I have this little static utility class:
>
> using System;
> using MonoTouch.Foundation;
> using MonoTouch.UIKit;
>
> namespace ZzLib
> {
> public class MCActivityView : UIAlertView
> {
> private static System.Drawing.RectangleF _frame =
> new System.Drawing.Rectangle(128,64,48,48);
>
> private MCActivityView(string title)
> : base()
> {
> Frame = _frame;
> Title = "Please wait";
> Show ();
> }
>
> private static UIAlertView _av;
>
> public static void Start() {
> _av = new MCActivityView();
> }
>
> public static void Stop() {
> if (_av != null) {
> _av.DismissWithClickedButtonIndex(0, true);
> _av = null;
> }
> }
>
> }
> }
>
> Before a lengthy operation I call
>
> MCActivityView.Start();
>
> and after the operation I call
>
> MCActivityView.Stop();
>
>
> Works fine. But rather than immediately displaying the alert, the screen
> gets shaded during some time and then only the alertView is shown.
>
> Most of the time, the tasks are not excessively long, so the're almost
> finished by the time the alertview appears.
>
> Is it possible to have the alertView appearing immediately (I don't
> really care whether the screen gets shades, but I do want the alertview
> to appear immediately.)
>
> Thanks in advance,
>
>
> Guido
>
> --
> Real computer scientists don't program in assembler.  They don't write
> in anything less portable than a number two pencil.
>
> http://vanhoecke.org ... and go2 places!
> ___
> 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] MTD Expand/Collapse Cell on touch

2012-12-08 Thread Jason Awbrey
is there a specific problem you're trying to solve, or do you just want to
know if there is a better way to approach this?

I wish Apple would include a standard expand/collapse control in their UI
framework - to me it makes a lot of sense on a display with limited real
estate


On Sat, Dec 8, 2012 at 1:05 PM, Alejandro Vazquez wrote:

> Hi everyone,
>
> I'm trying to create a Custom Element using Monotouch Dialog where I can
> touch a cell and it will expanded showing some buttons and if touch again
> it will collapse.
>
> Its working fine right now but I'm sure there is a better and right way to
> do it. Now when the cell is in expanded mode and I touch again it collapse
> but I had to add the following line in the Selected override method of my
> element with the Fade animation so It looks better, if I set animation to
> None then the extra height space is turned blue before it collapse:
>
> tableView.ReloadRows(new
> NSIndexPath[]{NSIndexPath.FromRowSection(path.Row,path.Section)},UITableViewRowAnimation.Fade);
>
> Hope someone can help me.
>
> This is my code:
>
> http://pastebin.com/ZPd6bhKK
>
> Thanks in advance.
>
> ___
> 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] Thanks Everyone!

2012-12-03 Thread Jason Awbrey
Looks awesome - congrats!

The website is very slick too - is that custom or a template?

Sent from my iPad

On Dec 3, 2012, at 7:44 PM, dermotos  wrote:

> Well, after 18 months of spare time development & learning, I've finally
> released my first app on the App Store.
> (more info: www.groovepond.com)
>
> I just wanted to thank everyone in this forum for there assistance,
> especially Rolf, Jeff, Nic Wise, Sebastien Pouliot and anyone else who
> helped me.
>
>
> App is live on the app store
> https://itunes.apple.com/app/groovepond/id547864690?mt=8
>
>
> Thanks again!
>
>
>
> --
> View this message in context: 
> http://monotouch.2284126.n4.nabble.com/Thanks-Everyone-tp4657767.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] "Invalid binary" when uploading my MonoTouch app

2012-11-14 Thread Jason Awbrey
do you have an image named with the new iPhone 5 modifier in your project?
default-5...@2x.png


On Wed, Nov 14, 2012 at 2:27 PM, Brett Spurrier wrote:

> I actually figured it out. Sort of. At least I was able to get some
> more information.
> I am now getting the "invalid binary" error for the following reason:
> *
> *
> *Invalid Launch Image* - Your app contains a launch image with a size
> modifier that is only supported for apps built with the iOS 6.0 SDK or
> later.
>
> But I have my MonoTouch Project settings set to ARMv7 and my deployment
> target is 5.0. Any ideas how to figure this out?
>
> I don't care about ARMv6 users. I just want ARMv7 and up.
>
> There are a few clues on the web about how to handle this with Xcode, but
> not MonoTouch.
>
> Thanks!
> Brett
>
>
>
> On Wed, Nov 14, 2012 at 3:01 PM, Jeffrey Kesselman wrote:
>
>> Did you zip the app?
>>
>> Its not as obvious as it should be but apples uploader takes a zipped
>> .app file, not a .app file.
>>
>>
>> On Wed, Nov 14, 2012 at 2:55 PM, Brett Spurrier > > wrote:
>>
>>> Hi everyone,
>>>
>>> I'm not sure if this is a pure MonoTouch issue, but I think figuring out
>>> how to solve it certainly relates to MT.
>>>
>>> I have an app that works great in development mode, and I even
>>> distribute it to beta testers via an adhoc build. This works perfect.
>>>
>>> When I go to submit it to the AppSore, the binary passes the Xcode
>>> validation, yet, when it it uploaded, the Apple servers are consistent;y
>>> marking it as an "invalid binary" with NO further explanation of what part
>>> is invalid.
>>>
>>> Has anyone seen this?
>>>
>>> Does anyone have any idea how to debug this? There are a thousand
>>> StackOverflow questions about this, but none of them pertain to MonoTouch,
>>> so their suggestions are difficult to try.
>>>
>>> Any pointers would be so greatly appreciated. I've been banging my head
>>> against a wall for a long time now.
>>>
>>> Cheers,
>>> Brett
>>>
>>>
>>> ___
>>> MonoTouch mailing list
>>> MonoTouch@lists.ximian.com
>>> http://lists.ximian.com/mailman/listinfo/monotouch
>>>
>>>
>>
>>
>> --
>> It's always darkest just before you are eaten by a grue.
>>
>
>
> ___
> 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] How to make a Beautifull cell?

2012-11-13 Thread Jason Awbrey
do you have a drawing or mockup of what you want to do?  Or an example of
an app that does something similar to what you want?  Sharing that will
probably get you more concrete answers than just saying "beautiful"

http://www.alexyork.net/blog/2011/07/18/creating-custom-uitableviewcells-with-monotouch-the-correct-way/

http://tirania.org/monomac/archive/2011/Jan-18.html




On Thu, Nov 8, 2012 at 6:47 AM, Morten Kruse  wrote:

> All the functionallity of my new appi is now finish.
> But I think it looks wery ugly.
>
> I have added at background color to the cell but now I want to add a frame
> with a sligth different color. How do I do that?
>
> And I alwos would like to add a little spacing between the cells so that I
> can see the background. How is that done?
>
> I can't find mutch about styling a list.
>
> Can anybody help?
>
> Best regards,
> Morten
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/How-to-make-a-Beautifull-cell-tp4657646.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] IOS6+ errors with GetHostEntry

2012-11-10 Thread Jason Awbrey
I would create a small test case and submit a bug


On Sat, Nov 10, 2012 at 2:03 AM, rnendel11  wrote:

> Additional note (I assumed this would be implied):
> The exception occurs *only* on the physical device, not the simulator.
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/IOS6-errors-with-GetHostEntry-tp4657647p4657649.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] Code Collaboration online

2012-11-01 Thread Jason Awbrey
MD supports subversion & git out of the box

Sent from my iPhone

On Nov 1, 2012, at 12:25 PM, Kris Bloom  wrote:



Are there any code sharing/ccode control/colaboration systems out there
that work with mono touch? I have a very small team that (right now) have
to email each other code to keep each other up to date. Many years ago i
used visual source safe and wonder if there is a mono touch compatible
equivalent that works over the internet. Thanks guys



Thanks,

Kris Bloom

Extreme Velocity 3D
www.ExtremeVelocity3d.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] yet another Attempting to JIT compile method... really need to understand how !

2012-10-14 Thread Jason Awbrey
I'm not seeing any of the code samples in your message

On Sun, Oct 14, 2012 at 6:50 PM, Baramuse  wrote:

> Hi there,
>
> So like I guess anybody else here, I caught my first "Attempting to JIT
> compile method" exception.
> I've read a LOT about it, but still I can't understand how to fix mine...
>
> I'm using Mono.UPNP for an iPad project, works flawlessly on the simulator,
> was thrilled about it, but then, when I finally got ti try it on the
> device...how disappointed :(
>
> Anyway, I'm asking here for somebody to point me out the possible solution,
> and maybe try to explain how he came to get the fix : I mean, I understand
> it is about the AOT not being able to predicate something so cannot AOT the
> call, so when I call it, it tries to compile it JIT and that's not allowed
> by the Apple OS.
> Ok, and this has something to do with generics, that's why the AOT cannot
> predicate.
> Ok, so I have to chase wich generic method, and try to "dummy instantiate"
> to give a hint for the AOT compiler right ?
> But which call really is posing problem, how can I "dummy instantiate" ?
>
> Here is the call :
>
>
> inside call maybe :
>
>
> And full exception :
>
>
> Is that enough? If you need some more code...
> is that "fixable"?
> Should I just forget about trying to use Mono.UPNP ?
>
> Thanks a lot for those who read all of that :)
>
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/yet-another-Attempting-to-JIT-compile-method-really-need-to-understand-how-tp4657496.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] Any idea what this could be?

2012-10-12 Thread Jason Awbrey
if this is high priority or mission critical, you should contact
supp...@xamarin.com to be sure they're involved.

On Fri, Oct 12, 2012 at 8:24 PM, James Darbyshire  wrote:

> To clarify:
>
> The selector is akin to a method signature.
>
> ObjC can't find a method with that signature.
>
> When I have had this problem in the past (not in the WillEnterForeground
> override), it has been a memory reference problem.
>
> Regards,
>
> James
>
> On 13/10/2012, at 12:18 PM, James Darbyshire 
> wrote:
>
> unrecognized selector sent to instance
>
>
> From my experience is usually due to something being GC'd too early.
>
> Can you paste your AppDelegate?
>
> The iOS object which is being sent the selector might not be the same
> object reference the method is expecting.
>
> BTW You can profile to look for problems:
>
>
> http://stackoverflow.com/questions/6641540/xcode-4-how-to-profile-memory-usage-performance-with-instruments
>
> Regards,
>
> James
>
> On 13/10/2012, at 12:09 PM, Dean Cleaver <
> dean.clea...@xceptionsoftware.com> wrote:
>
>  And that’s exactly my point. The code I have shared does nothing, yet
> the exception handler in my Main() function traps errors like this, and
> then the app crashes completely:
>
>
>
> MonoTouch.Foundation.MonoTouchException: Objective-C exception thrown.
> Name: NSInvalidArgumentException Reason: -[OS_dispatch_semaphore
> UIApplicationWillEnterForeground:]: unrecognized selector sent to instance
> 0x81b27e0
> at (wrapper managed-to-native)
> MonoTouch.UIKit.UIApplication:UIApplicationMain (int,string[],intptr,intptr)
> at MonoTouch.UIKit.UIApplication.Main (System.String[] args, System.String
> principalClassName, System.String delegateClassName) [0x0004c] in
> /Developer/MonoTouch/Source/monotouch/src/UIKit/UIApplication.cs:38
> at KleverLogic.FlashValet.iPhone.Valet.Application.Main (System.String[]
> args) [0x00048] in
> /xsl-home/kleverlogic/FlashValet/Mobile/iPhone/Valet/Main.cs:40
>
>
>
> I am confused by this:
>
>
>
> Reason: -[OS_dispatch_semaphore UIApplicationWillEnterForeground:]:
> unrecognized selector sent to instance 0x81b27e0
>
>
>
> When my code does nothing in the WillEnterForeground call. So what is
> passing an unrecognized selector in that call if it’s not my code? Can you
> see now why I’m rather stressed about this?
>
>
>
> Code somewhere else? I have about 90 to 100 view controllers, plus their
> respective DataSource classes. Starting to look at that with the view that
> “something might be wrong somewhere” is not an enthralling task. I don’t
> have a single thing to go on – not even a hint as to what class, nothing.
> It’s like looking for a needle in a haystack.
>
>
>
> Dino
>
>
>
> *From:* James Darbyshire 
> [mailto:jamesdarbysh...@gmail.com]
>
> *Sent:* Friday, October 12, 2012 20:02
> *To:* Dean Cleaver
> *Cc:* James Darbyshire; monotouch@lists.ximian.com
> *Subject:* Re: [MonoTouch] Any idea what this could be?
>
>
>
> My point is that the code you have shared does nothing, hence I would be
> surprised if it is that code which causes the problem.
>
>
>
> The try block is empty. Therefore it can't be that catch block catching
> the exception.
>
>
>
> Is it possible that some code elsewhere is not disposing of a reference?
>
> Regards,
>
>
>
> James
>
>
> On 13/10/2012, at 11:40 AM, Dean Cleaver <
> dean.clea...@xceptionsoftware.com> wrote:
>
>  James,
>
>
>
> I did share the code. That’s it:
>
>
>
> public override void WillEnterForeground(UIApplication application)
>
> {
>
> try
>
> {
>
>  
> //ThreadPool.QueueUserWorkItem(this.EnterForeground);
>
> }
>
> catch (Exception ex)
>
> {
>
>  Application.SendError(ex);
>
> }
>
> }
>
>
>
> I can’t publish my entire app code in here. But why am I getting
> exceptions that simply crash my app in a method that I have no real code
> in? Even if I comment out the entire “WillEnterForeground” I still get
> explosions that just kill the app completely.
>
>
>
> It will not break in code – always just blows up. Never blew up before,
> just after I made the mistake of upgrading to MonoTouch 6.0.3. This code
> has been working for over 12 months, and now I’m in deep shit where I can’t
> publish a new version because I cannot get any help on some severe crashes.
>
>
>
> Hell – I’ve even got one crash on an iPad where it actually manages to
> disable the Home button until you reboot the device – any ideas what API I
> might be using incorrectly to achieve that?
>
>
>
> Dino
>
>
>
> *From:* James Darbyshire 
> [mailto:james.darbysh...@blazeware.net]
>
> *Sent:* Friday, October 12, 2012 19:35
> *To:* Dean Cleaver
> *Cc:* monotouch@lists.ximian.com
> *Subject:* Re: [MonoTouch] Any idea what this could be?
>
>
>
> To be blunt, we can't help without having code to look through.
>
>
>
> MonoTouch doesn't just add method ca

Re: [MonoTouch] Android list?

2012-10-08 Thread Jason Awbrey
http://lists.ximian.com/mailman/listinfo/monodroid

Sent from my iPhone

On Oct 8, 2012, at 1:16 PM, Kris Bloom  wrote:

Is there a list like this one for android development?

Thanks,

Kris Bloom

Extreme Velocity 3D
www.ExtremeVelocity3d.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] UITableView BackgroundColor property not working?

2012-10-08 Thread Jason Awbrey
sorry, guess it is too early in the morning here  :-)

On Mon, Oct 8, 2012 at 8:13 AM, Dean Cleaver <
dean.clea...@xceptionsoftware.com> wrote:

>  I’m not setting it to UIColor.GroupTableViewBackgroundColor – I’m
> setting it to UIColor.Clear and the setBackgroundColor property is not
> deprecated.
>
> ** **
>
> Seems you now have to set the BackgroundView to null to get the background
> color to show through.
>
> ** **
>
> Dino
>
> ** **
>
> *From:* Jason Awbrey [mailto:ja...@awbrey.net]
> *Sent:* Monday, October 08, 2012 08:01
> *To:* Dean Cleaver
> *Cc:* monotouch@lists.ximian.com
> *Subject:* Re: [MonoTouch] UITableView BackgroundColor property not
> working?
>
> ** **
>
> it's been deprecated
>
>
> http://stackoverflow.com/questions/12452810/is-grouptableviewbackgroundcolor-deprecated-on-ios-6
> 
>
> On Mon, Oct 8, 2012 at 7:55 AM, Dean Cleaver <
> dean.clea...@xceptionsoftware.com> wrote:
>
> Hi,
>
>  
>
> I’ve upgraded to MonoTouch 6 recently, and have just noticed that all of
> my tableviews now have the default background. The code used to set them to
> UIColor.Clear, and thus the black background from the view would be
> visible, but it’s not working any more. And setting the background to
> UIColor.Black has no effect either.
>
>  
>
> Is this a bug or an iOS “feature”?
>
>  
>
> Dino
>
>
> ___
> 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] UITableView BackgroundColor property not working?

2012-10-08 Thread Jason Awbrey
it's been deprecated

http://stackoverflow.com/questions/12452810/is-grouptableviewbackgroundcolor-deprecated-on-ios-6

On Mon, Oct 8, 2012 at 7:55 AM, Dean Cleaver <
dean.clea...@xceptionsoftware.com> wrote:

>  Hi,
>
> ** **
>
> I’ve upgraded to MonoTouch 6 recently, and have just noticed that all of
> my tableviews now have the default background. The code used to set them to
> UIColor.Clear, and thus the black background from the view would be
> visible, but it’s not working any more. And setting the background to
> UIColor.Black has no effect either.
>
> ** **
>
> Is this a bug or an iOS “feature”?
>
> ** **
>
> Dino
>
> ___
> 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] Wizard Control in MonoTouch

2012-10-04 Thread Jason Awbrey
there isn't, but it would be fairly easy to implement something similar
using MT.Dialog

On Wed, Oct 3, 2012 at 7:08 AM, kjmcsd  wrote:

> I am new to using Monotouch and I would like to know is there a control
> that
> is similiar to the wizard control in ASP.NET? Any suggestions will be
> greatly apreciated.
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Wizard-Control-in-MonoTouch-tp4657347.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] Maptastrophe?

2012-09-24 Thread Jason Awbrey
I don't believe that they are still capturing maps.google.com - when I
click on map links I get taken to Google maps in Safari

however, I agree that the new map is a huge step back - I was in San
Antonio a few weeks ago  while running the beta, and the maps app kept
insisting the nearest Sea World was in Orlando

On Mon, Sep 24, 2012 at 7:01 AM, Alex White  wrote:

> The apple maps are sub-standard all my windows users (over 1000 of them)
> that use the iPhones and iPads that have upgraded to IOS6 have taken their
> devices into the apple stores and got replacement units as the mapping
> component is completely useless and there seems to be no way to take the
> devices back to IOS6.
>
> My users use the street view function a huge amount and need complete
> mapping and street view of the whole of london, the Apple mapping has major
> gaps in it.
>
> Whilst there is apps that do this job, it is completely out of order that
> apple have hijacked maps.google.com and map it to somewhere else, if they
> are not going to use maps.google.com for their component then they should
> release the URL so that it can be used in safari.
>
> This upgrade has gone down very badly in my user base, many of the guys
> that were going to upgrade their phones are not going to now.
>
> ATB
>
> Alex
>
>
>
> On 24 Sep 2012, at 10:20, Rolf Bjarne Kvinge  wrote:
>
> Hi,
>
> On Sun, Sep 23, 2012 at 11:25 PM, Chris_M  wrote:
>
>>
>> I am very close to having my first app ready to submit to Apple -- except
>> that I haven't looked at any iOS related stuff yet. Now I'm kind of
>> scared.
>>
>> I display a Google Maps view in the app itself and there's also
>> functionality to launch the external Maps app. Will either of these work
>> in
>> iOS 6?
>>
>
> The API hasn't changed at all, you do it the exact same way you used to
> with the Google maps and in iOS6 it'll use the Apple maps.
>
> In other words: you don't have to do anything at all to make the Apple
> maps work if you already have the Google maps working.
>
> Rolf
>
>
>>
>> Reading all of the problems with Apple's new Maps app, I'm not really
>> super
>> excited about the prospect of switching to it instead.
>>
>> If I do have to switch to Apple Maps for iOS 6 support, I assume I'll have
>> to use code to detect the OS version and will be able to stick with what I
>> got for iOS 5 and earlier, and then implement the code to use Apple Maps
>> separately if the user is using iOS 6?
>>
>> (I looked and didn't see this addressed elsewhere, so if it has come up
>> already I apologize.)
>>
>>
>> --Chris
>>
>>
>>
>> --
>> View this message in context:
>> http://monotouch.2284126.n4.nabble.com/Maptastrophe-tp4657170.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


[MonoTouch] RedLaser bindings

2012-09-23 Thread Jason Awbrey
Has anyone worked with RedLaser in MT lately - particularly after upgrading
to iOS 6?

I'm starting down that road, and am getting crashes when running the sample
app.

Any thoughts or suggestions on where to begin digging?

thanks - Jason


libc++abi.dylib: terminate called throwing an exception

Native stacktrace:

0   RedLaserSample  0x017c5781
mono_handle_native_sigsegv + 244
1   RedLaserSample  0x017f6e2d
sigabrt_signal_handler + 112
2   libsystem_c.dylib   0x39bf4e93 _sigtramp + 42
3   libsystem_c.dylib   0x39beb123 pthread_kill + 58
4   libsystem_c.dylib   0x39c27973 abort + 94
5   libc++abi.dylib 0x32f96d4f  + 74
6   libc++abi.dylib 0x32f93ff9  + 24
7   libobjc.A.dylib 0x3414aa8f  + 170
8   libc++abi.dylib 0x32f9407b  + 78
9   libc++abi.dylib 0x32f94114  + 19
10  libc++abi.dylib 0x32f95513 __cxa_throw + 122
11  RedLaserSample  0x00018fd7
_ZN5zxing24GlobalHistogramBinarizer8estimateERSt6vectorIiSaIiEE + 186
12  RedLaserSample  0x000191f9
_ZN5zxing24GlobalHistogramBinarizer14getBlackMatrixEv + 316
13  RedLaserSample  0x00015ce1
_ZN5zxing12BinaryBitmap14getBlackMatrixEv + 12
14  RedLaserSample  0x00047a75
_ZN5zxing6qrcode12QRCodeReader6decodeENS_3RefINS_12BinaryBitmapEEENS_11DecodeHintsE
+ 28
15  RedLaserSample  0x0004fb79
_ZN5zxing6Reader6decodeENS_3RefINS_12BinaryBitmapEEE + 240
16  RedLaserSample  0x00056919 -[FormatReader
decode:] + 116
17  RedLaserSample  0x000145d1 -[ZXingDecoder
findCodesInBitmap:bytesPerRow:width:height:] + 656
18  RedLaserSample  0x0005c467 -[BarcodePhotoEngine
zxingFindBarcodesInPixmap:] + 222
19  RedLaserSample  0x000543cd __38-[BarcodeEngine
findBarcodesInPixMap:]_block_invoke_066 + 76
20  libdispatch.dylib   0x34b2b11f  + 10
21  libdispatch.dylib   0x34b2eecf  + 142
22  libdispatch.dylib   0x34b2edc1  + 40
23  libdispatch.dylib   0x34b2f91d  + 184
24  libdispatch.dylib   0x34b2fac1  + 84
25  libsystem_c.dylib   0x39bc2a11  + 360
26  libsystem_c.dylib   0x39bc28a4 start_wqthread + 8

=
Got a SIGABRT while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Support to iPad 1, 2 and 3

2012-09-20 Thread Jason Awbrey
there is a good SO post on this -
http://stackoverflow.com/questions/12508826/ios-6-mono-and-backward-compatibility

it sounds like for maximum backwards compatibility you have to use XCode
4.4, and lose any new iOS 6 features

On Thu, Sep 20, 2012 at 7:38 AM, Karl Heinz Brehme Arredondo <
k...@e-magesolutions.com> wrote:

> Hi,
>
> I'd like to know what we need to still support iOS 4, 5 and 6, for iPad 1
> (iOS 4 and iOS 5) and the rest more newer iPads?
> I can use MonoTouch 6 with Xcode 4.5 or need some special?
>
> Thanks,
>
> Karl
>
> ___
> 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] Refactor NOOB question, Is it broken?

2012-09-13 Thread Jason Awbrey
not sure exactly what you're trying to do - but I can tell you that a lot
of the refactor options have been pulled from MD, so it's possible if
you're following an old tutorial or post they may be referring to options
that don't exist anymore

On Thu, Sep 13, 2012 at 2:43 PM, Kris Bloom  wrote:

> I am trying to forger out how to add an override and when i use the
> refactor like it says to, all i get is "rename"?
>
> Thanks,
>
> Kris Bloom
> 
> Extreme Velocity 3D
> www.ExtremeVelocity3d.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] Need Simple UIWebView Example to Format Text

2012-09-06 Thread Jason Awbrey
I would go even simpler (there are probably syntax mistakes in this, but
you get the idea)



this is my text

this is more text in a different font

this more text, but colored!




if you're still stuck feel free to send me an example of what you're
working on and I'll try to help

On Thu, Sep 6, 2012 at 4:17 PM, Chris_M  wrote:

> Thanks, Jason.
>
> To be honest, embedded css is kind of new territory for me, although it
> *seems* like it ought to be the path of least resistance. I have tried
> something along the lines in this example:
> http://www.blooberry.com/indexdot/css/examples/cssembedded.htm Embedded
> CSS
> Example .
>
> Now, what I tried is much simpler than that (I'd post the code, but it's
> all
> messed up at this exact moment), but I get "Unexpected Symbol [...],
> expecting identifier" error messages pretty much with every CSS element.
> That's why I was hoping there might be a simple example online somewhere
> that is known to work in MonoTouch that I could look at. Really, just
> seeing
> a MonoTouch-friendly example that sets the font to a particular size and
> typeface would be a huge help.
>
>
> --Chris
>
>
> jawbrey wrote
> >
> > Just using html with embedded css should do the trick.  Can you post a
> > sample of what you're doing and why it doesn't work?
> >
> > On Thu, Sep 6, 2012 at 3:32 PM, Chris_M  wrote:
> >
> >>
> >> I have a page of dynamically generated data and text (pulled from a
> >> database
> >> and parsed) to display. The formatting isn't going to be fancy -- I need
> >> to
> >> set the font, have some bold text some plain text, change the font color
> >> in
> >> a few places, and control the line spacing some. A UIWebView should do
> >> the
> >> trick, but I haven't been able to get the font stuff to work the way it
> >> should when building a web page.
> >>
> >> I Googled for help, but I just a ton of responses that aren't helpful.
> >> Can
> >> someone point me in the direction of a simple example online of what I'm
> >> looking for that changes or sets the actual font, changes the font size,
> >> changes the font color, like that?
> >>
> >> TIA
> >>
> >>
> >> --Chris
> >
> > ___
> > MonoTouch mailing list
> > MonoTouch@.ximian
> > http://lists.ximian.com/mailman/listinfo/monotouch
> >
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Need-Simple-UIWebView-Example-to-Format-Text-tp4656902p4656905.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] Need Simple UIWebView Example to Format Text

2012-09-06 Thread Jason Awbrey
Just using html with embedded css should do the trick.  Can you post a
sample of what you're doing and why it doesn't work?

On Thu, Sep 6, 2012 at 3:32 PM, Chris_M  wrote:

>
> I have a page of dynamically generated data and text (pulled from a
> database
> and parsed) to display. The formatting isn't going to be fancy -- I need to
> set the font, have some bold text some plain text, change the font color in
> a few places, and control the line spacing some. A UIWebView should do the
> trick, but I haven't been able to get the font stuff to work the way it
> should when building a web page.
>
> I Googled for help, but I just a ton of responses that aren't helpful. Can
> someone point me in the direction of a simple example online of what I'm
> looking for that changes or sets the actual font, changes the font size,
> changes the font color, like that?
>
> TIA
>
>
> --Chris
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Need-Simple-UIWebView-Example-to-Format-Text-tp4656902.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] Launching my App from link in SMS

2012-09-05 Thread Jason Awbrey
should be easy enough to test - try sending yourself a text containing a
url scheme for an app you have registered (like twitter://...)

On Wed, Sep 5, 2012 at 4:42 PM, Phil Cockfield  wrote:

> I'm wondering if it's possible to cause my app to be launched based on a
> link in a TXT/SMS message.
>
> It's possible to do the reverse of this, using the iPhone URL scheme,
>
> sms:1-408-555-1212
> REF:
> Apple URL Scheme Reference
>
>
> But I would like to do the opposite.  Send a TXT notification, then have
> the app launch from there.
>
> --
> *Phil *Cockfield
>
>
>
>
> ___
> 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] UIImageView not hide by Splash Screen

2012-08-30 Thread Jason Awbrey
why are you trying to do this in code instead of just using Default.png?

On Thu, Aug 30, 2012 at 8:19 AM, pritish
wrote:

> Hi ,
>
>  I added UIImageView few UIButton and TextBox to my iPad app. now I want to
> add the splash screen to the whole UIView. In this scenario I add the
> Button
> , TextBox  dynamically and UIImageView I used as Control means I drag n
> drop
> it to UIView.
>
> while launching the app the Button and TextBox are hide by splash screen
> but
> UIImageView is show above the splash screen
>
> for that I tried this code
>
> public override void ViewDidLoad ()
> {
> //SetTextViewInfo (PresentImage);
> base.ViewDidLoad ();
> // Perform any additional setup after loading the
> view, typically from a
> nib.
>
> #region Splash Screen
> // get the Height & Width of device Screen
> float mainSrcWidth = this.View.Bounds.Width;
> float mainSrcHeight = this.View.Bounds.Height;
> splashScreen = new UIImageView (UIImage.FromFile
> ("Images/load1536_2008.png"));
> splashScreen.Frame = new RectangleF (0, 0,
> mainSrcWidth, mainSrcHeight);
>
> //Start the thread;
> ThreadPool.QueueUserWorkItem (delegate {
> Load ();
> }
> );
> this.Add (btnReset);
> this.Add (btnExit);
> this.Add (txtviewPatientInfo);
>
> this.Add (ImgView);
> this.View.AddSubview (splashScreen);
> }
>
> #region Load() splashscreen
> private void Load ()
> {
> //Sleep for 5 seconds to simulate a long load.
>
> Thread.Sleep (new TimeSpan (0, 0, 0, 5));
> this.BeginInvokeOnMainThread (delegate {
> splashScreen.RemoveFromSuperview ();
> splashScreen = null;
> }
> );
> }
> #endregion
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/UIImageView-not-hide-by-Splash-Screen-tp4656778.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] a couple of deployment questions with app store approval

2012-08-26 Thread Jason Awbrey
I don't think there should be a problem with anything you've mentioned.
 Keep in mind that if you include a pre-populated db with your bundle, you
will need to copy it out to the user folder before you can write to it -
files in the bundle are not writable

On Sun, Aug 26, 2012 at 9:55 AM, Alex White  wrote:

> Hi All,
>
> My first app is a program that has been quite successful on windows, so a
> port over to IOS is the next logical step. Firstly this application uses
> Sqlite, on first run it looks for the database, I could create a blank
> database if one is not there but there is a quite a lot of initial data the
> database needs to run so it would be better that I bundle a default
> database into the application, is this permitted within the guidelines?.
>
> I need to share the folder that the database is in so that it is visible
> in iTunes, I have this working perfectly, the idea is simple the user can
> copy their windows based database via iTunes and use this instead of the
> one on the device, this means the user can work seamlessly between windows
> and the device moving the whole database, this idea works perfectly for me,
> is this permitted within the guidelines?
>
> Last but not least, I have working the following, emails sent to the
> device that have attachments with a very specific extension fire up the
> application, and import that data directly into the database, the
> attachments could be made by a number of different processes, e.g. other
> uses of the program on other devices, then emailed to other users, is this
> permitted within the guidelines?
>
> I am just about to start rolling out my app to a number of testers and
> don't want to provide features that will get stripped out after failing
> approval?
>
> is there anything I am missing that I need to get up to speed?
>
> Thanks.
>
> ATB
>
> Alex
> ___
> 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] having a lot of problems rolling out betas

2012-08-26 Thread Jason Awbrey
can you deploy to your device directly from MD?  That should tell you if
the problem is isolated to TF or is a general problem with your
provisioning.  You can also look inside your app bundle and the
provisioning file that is getting embedded and verify that your UUID is
there.  I've had problems in the past where old stuff got stuck in my app
bundle, or newer things failed to update.  Sometimes it helps to delete
everything from the terminal so you can be sure that everything will get
updated on the next build

Most of the problems I've had in the past with TF were user error - either
I forgot to update a device in the provisioning portal and update all of
the certs, or the user didn't understand the workflow on the TF side.  It's
not complicated, but it can be a little confusing the first few times you
do it

I agree that Apple has made the entire process overcompilcated - and they
really don't provide any good tools for debugging deployment issues.  This
is why I like TF - they provide a nice interface on top of that process to
make it easier to manage

On Sun, Aug 26, 2012 at 12:47 PM, Alex White  wrote:

> Hi All,
>
> This process is getting very frustrating, I am now using TestFlightApp to
> get my betas out to users, to say this process is flaky is an
> understatement, to simplify things I have only one provisioning profile and
> one development profile, I have one user that just cannot get his device to
> register via the TestFlightApp email, but that is not the one I am getting
> really upset about it is my iPhone that now does not have permission to
> install the latest beta it is included in both profiles, but clicking on
> the email from testfightapp I just get back the message "this device cannot
> install this item", in testflightapp it is not one of the permitted
> devices, I have removed all the profiles and rebuilt them and only two
> devices show up as permitted.
>
> I have wasted another 4 hours going round in circles, tell me I am doing
> something wrong or is this what I can expect from developing IOS
> applications because if that is the case I am ready to throw in the towel
> and drop IOS development, I just feel that apple have locked this stuff up
> so tight that it is almost unusable.
>
> Thanks
>
> Alex
> ___
> 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] App is 'waiting for review' for 10 days now...

2012-08-25 Thread Jason Awbrey
I submitted an app last Monday 8/13 and it didn't get reviewed until yesterday

Sent from my iPad

On Aug 25, 2012, at 5:08 AM, Liam  wrote:

> Hi
>
> Yes this is normal. Once it goes to "In Review" it won't take long to 
> complete.
>
> My latest submission(s) to the appstore have taken 10-12 days before the 
> review was completed.
>
> This page here http://reviewtimes.shinydevelopment.com/ tracks the average 
> review times.
>
> Liam
>
> On 25/08/12 21:40, jowi wrote:
>> On the 14th of august i've submitted my app to be approved for the appstore,
>> but since then it's '*waiting* for review'. It's been over 10 days now. I
>> know it can take a while, but this sounds a bit extreme?
>>
>> Anyone else that can confirm the long waiting period at this moment?
>>
>>
>>
>> --
>> View this message in context: 
>> http://monotouch.2284126.n4.nabble.com/App-is-waiting-for-review-for-10-days-now-tp4656710.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


Re: [MonoTouch] App Rejected, Need help.

2012-08-24 Thread Jason Awbrey
maybe that's it - I thought I would see the project listed in my dashboard
after I had accepted the invite, even though I haven't gotten a new build.
It's been a while since I've used TF as a "tester" so I may be rusty on the
workflow

On Fri, Aug 24, 2012 at 8:40 AM, René Ruppert wrote:

> You are aware that after you have been invited, he will have to rebuild
> tha app, using a provisoninig profile that includes your iOS device's ID?
>
> René
>
> Am 24.08.2012 um 15:33 schrieb Jason Awbrey :
>
> is anyone else having trouble with Bob's TestFlight invite?  I've accepted
> it (on my iPad and desktop) but the project doesn't show in my dashboard
>
> On Fri, Aug 24, 2012 at 5:43 AM, Robert Reck  wrote:
>
>> Yep, I've tried it on an iPad 2 and iPhone 4S. Both worked fine. I have
>> not had an opportunity to try it on an iPad 3. I will get you added to Test
>> Flight a little later this morning. I understand about you not being able
>> to try it until you get home.
>>
>> Bob
>>
>> Sent from my iPhone
>>
>> On Aug 24, 2012, at 5:48 AM, "Nic Wise"  wrote:
>>
>> > Yeah, I see what you mean from the crash log. Kinda nasty.
>> >
>> > What have you tested it on? I wonder if it's a multi-core issue. Have
>> > you tried it on an iPad3? an iPad2? and iPhone 4S?
>> >
>> > On Fri, Aug 24, 2012 at 10:46 AM, Nic Wise 
>> wrote:
>> >> this one
>> >>
>> >> nicw@fastchicken co nz (add the dots)
>> >>
>> >> I can't do it until I get home tho.
>> >>
>> >> On Thu, Aug 23, 2012 at 10:04 PM, bobreck  wrote:
>> >>> Nic, I do use TestFlight. What email address should I use to invite
>> you?
>> >>>
>> >>> Sent from my iPad
>> >>>
>> >>> On Aug 23, 2012, at 4:57 PM, "Nic Wise [via MonoTouch]" <[hidden
>> >>> email]<mailto:[hidden email]>> wrote:
>> >>>
>> >>> Sorry, I can't see the crash logs (try putting them on an FTP server,
>> >>> or in dropbox and linking to them)
>> >>>
>> >>> You did test it on a real device at some point? The easiest way may be
>> >>> to buy or borrow an iPad3 and see what happens, but see if you can
>> >>> post the crashlog somewhere else.
>> >>>
>> >>> On Thu, Aug 23, 2012 at 7:45 PM, Justin Hansen <[hidden
>> >>> email]> wrote:
>> >>>
>> >>>> Many times you have to test on device to catch the issue. I haven't
>> >>>> had an issue with iPad 3 but I did with older devices.
>> >>>>
>> >>>> Justin Hansen
>> >>>>
>> >>>> On Aug 23, 2012, at 2:42 PM, bobreck <[hidden
>> >>>> email]> wrote:
>> >>>>
>> >>>>> All:
>> >>>>> Ok, so my app was rejected this morning by Apple. They are saying
>> that
>> >>>>> the
>> >>>>> app crashed on an iPad3,3 (which I believe is the new iPad, right?)
>> on
>> >>>>> iOS
>> >>>>> 5.1.1. I can't replicate this scenario and I can not get the app to
>> crash
>> >>>>> in
>> >>>>> the iOS Simulator using iOS 5.1. Also, the app is an iPhone app and
>> does
>> >>>>> not
>> >>>>> crash on the iPhone.
>> >>>>>
>> >>>>> Apple supplied the attached crash report, but I can't make anything
>> out
>> >>>>> of
>> >>>>> it. I've only been developing iOS apps for a few months and I've
>> only
>> >>>>> worked
>> >>>>> with MonoTouch. I have no Objective-C knowledge. There's got to be
>> a way
>> >>>>> to
>> >>>>> extract the exact crash location from this file, right? I see some
>> stuff
>> >>>>> about doing this in XCode, but I really don't understand it. Is
>> there
>> >>>>> anything to do in MonoTouch to track it down? Or can someone help me
>> >>>>> understand this crash report?
>> >>>>>
>> >>>>> Thanks very much!
>> >>>>> Bob
>> >>>>>
>> >>>>>
>> >>>>>

Re: [MonoTouch] App Rejected, Need help.

2012-08-24 Thread Jason Awbrey
is anyone else having trouble with Bob's TestFlight invite?  I've accepted
it (on my iPad and desktop) but the project doesn't show in my dashboard

On Fri, Aug 24, 2012 at 5:43 AM, Robert Reck  wrote:

> Yep, I've tried it on an iPad 2 and iPhone 4S. Both worked fine. I have
> not had an opportunity to try it on an iPad 3. I will get you added to Test
> Flight a little later this morning. I understand about you not being able
> to try it until you get home.
>
> Bob
>
> Sent from my iPhone
>
> On Aug 24, 2012, at 5:48 AM, "Nic Wise"  wrote:
>
> > Yeah, I see what you mean from the crash log. Kinda nasty.
> >
> > What have you tested it on? I wonder if it's a multi-core issue. Have
> > you tried it on an iPad3? an iPad2? and iPhone 4S?
> >
> > On Fri, Aug 24, 2012 at 10:46 AM, Nic Wise 
> wrote:
> >> this one
> >>
> >> nicw@fastchicken co nz (add the dots)
> >>
> >> I can't do it until I get home tho.
> >>
> >> On Thu, Aug 23, 2012 at 10:04 PM, bobreck  wrote:
> >>> Nic, I do use TestFlight. What email address should I use to invite
> you?
> >>>
> >>> Sent from my iPad
> >>>
> >>> On Aug 23, 2012, at 4:57 PM, "Nic Wise [via MonoTouch]" <[hidden
> >>> email]> wrote:
> >>>
> >>> Sorry, I can't see the crash logs (try putting them on an FTP server,
> >>> or in dropbox and linking to them)
> >>>
> >>> You did test it on a real device at some point? The easiest way may be
> >>> to buy or borrow an iPad3 and see what happens, but see if you can
> >>> post the crashlog somewhere else.
> >>>
> >>> On Thu, Aug 23, 2012 at 7:45 PM, Justin Hansen <[hidden
> >>> email]> wrote:
> >>>
>  Many times you have to test on device to catch the issue. I haven't
>  had an issue with iPad 3 but I did with older devices.
> 
>  Justin Hansen
> 
>  On Aug 23, 2012, at 2:42 PM, bobreck <[hidden
>  email]> wrote:
> 
> > All:
> > Ok, so my app was rejected this morning by Apple. They are saying
> that
> > the
> > app crashed on an iPad3,3 (which I believe is the new iPad, right?)
> on
> > iOS
> > 5.1.1. I can't replicate this scenario and I can not get the app to
> crash
> > in
> > the iOS Simulator using iOS 5.1. Also, the app is an iPhone app and
> does
> > not
> > crash on the iPhone.
> >
> > Apple supplied the attached crash report, but I can't make anything
> out
> > of
> > it. I've only been developing iOS apps for a few months and I've only
> > worked
> > with MonoTouch. I have no Objective-C knowledge. There's got to be a
> way
> > to
> > extract the exact crash location from this file, right? I see some
> stuff
> > about doing this in XCode, but I really don't understand it. Is there
> > anything to do in MonoTouch to track it down? Or can someone help me
> > understand this crash report?
> >
> > Thanks very much!
> > Bob
> >
> >
> >
> http://monotouch.2284126.n4.nabble.com/file/n4656675/KillUrWatts_2012-08-23-082616_AQiPad51.crash
> > KillUrWatts_2012-08-23-082616_AQiPad51.crash
> >
> >
> >
> > --
> > View this message in context:
> >
> http://monotouch.2284126.n4.nabble.com/App-Rejected-Need-help-tp4656675.html
> > Sent from the MonoTouch mailing list archive at
> > Nabble.com.
> > ___
> > MonoTouch mailing list
> > [hidden email]
> > http://lists.ximian.com/mailman/listinfo/monotouch
>  ___
>  MonoTouch mailing list
>  [hidden email]
>  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
> >>> [hidden email]
> >>> http://lists.ximian.com/mailman/listinfo/monotouch
> >>>
> >>>
> >>> 
> >>> If you reply to this email, your message will be added to the
> discussion
> >>> below:
> >>>
> >>> NAML<
> http://monotouch.2284126.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml
> >
> >>

Re: [MonoTouch] App Rejected, Need help.

2012-08-23 Thread Jason Awbrey
if you use TestFlight, I'd be willing to test it for you on my iPad 3.  I'm
sure others here would do the same

On Thu, Aug 23, 2012 at 3:36 PM, Nic Wise  wrote:

> Sorry, I can't see the crash logs (try putting them on an FTP server,
> or in dropbox and linking to them)
>
> You did test it on a real device at some point? The easiest way may be
> to buy or borrow an iPad3 and see what happens, but see if you can
> post the crashlog somewhere else.
>
> On Thu, Aug 23, 2012 at 7:45 PM, Justin Hansen  wrote:
> > Many times you have to test on device to catch the issue. I haven't
> > had an issue with iPad 3 but I did with older devices.
> >
> > Justin Hansen
> >
> > On Aug 23, 2012, at 2:42 PM, bobreck  wrote:
> >
> >> All:
> >> Ok, so my app was rejected this morning by Apple. They are saying that
> the
> >> app crashed on an iPad3,3 (which I believe is the new iPad, right?) on
> iOS
> >> 5.1.1. I can't replicate this scenario and I can not get the app to
> crash in
> >> the iOS Simulator using iOS 5.1. Also, the app is an iPhone app and
> does not
> >> crash on the iPhone.
> >>
> >> Apple supplied the attached crash report, but I can't make anything out
> of
> >> it. I've only been developing iOS apps for a few months and I've only
> worked
> >> with MonoTouch. I have no Objective-C knowledge. There's got to be a
> way to
> >> extract the exact crash location from this file, right? I see some stuff
> >> about doing this in XCode, but I really don't understand it. Is there
> >> anything to do in MonoTouch to track it down? Or can someone help me
> >> understand this crash report?
> >>
> >> Thanks very much!
> >> Bob
> >>
> >>
> http://monotouch.2284126.n4.nabble.com/file/n4656675/KillUrWatts_2012-08-23-082616_AQiPad51.crash
> >> KillUrWatts_2012-08-23-082616_AQiPad51.crash
> >>
> >>
> >>
> >> --
> >> View this message in context:
> http://monotouch.2284126.n4.nabble.com/App-Rejected-Need-help-tp4656675.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/
>
> 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] Uitableview with images .. slow scrolling

2012-08-21 Thread Jason Awbrey
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  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


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

2012-08-21 Thread Jason Awbrey
read the comments in the source - it is all explained fairly well

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

the (50,50) argument in the constructor is optional, it specifies the cache
size and memory limit

the 2nd argument to RequestImage() is a callback implementing IImageUpdated
that will be called when the request completes

On Tue, Aug 21, 2012 at 7:03 PM, Aziz  wrote:

> Thanks Guys
>
> I added the reference and I do :
>
> MonoTouch.Dialog.Utilities.ImageLoader MyLoader= new
> MonoTouch.Dialog.Utilities.ImageLoader(50,50); *//Idon't understand the
> sizes and is it for each image ?*
>
> cell.ImageView.Image=MyLoader.RequestImage(MyUrl,*What I should put here
> !!*);
>
> Thanks
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Uitableview-with-images-slow-scrolling-tp4656636p4656639.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] Uitableview with images .. slow scrolling

2012-08-21 Thread Jason Awbrey
load the images asynchronously and cache them

On Tue, Aug 21, 2012 at 5:39 PM, Aziz  wrote:

> Hi guys
> I have a table view which has in getcell() the following line :
>
>
> cell.ImageView.Image= UIImage.LoadFromData(NSData.FromUrl("www...com"
> ));
>
> it works and it get the image and assign it to the cell
>
> but the problem is : the scrolling in the tableview is too slow and it be
> fast when I remove the above line ..!
>
> how I can solve the problem ?
>
> Thanks
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Uitableview-with-images-slow-scrolling-tp4656636.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] cross platform library code

2012-08-20 Thread Jason Awbrey
ok - I created a PCL project in my MT solution

when I look at the project references, I see System.Core, System, and
System.XML in red (Assembly not available in .NETPortable 4.0 Profile1
Profile (in Mono 2.10.9))

the Edit References dialog doesn't list any available dll's when I try to
add System.XML.Linq

I'm running on the beta channel with MD 3.0.3.5, Mono 2.10.9, MT 5.3.5

On Mon, Aug 20, 2012 at 7:11 PM, Craig Dunn  wrote:

> Yep - there is a very basic example PCL project here
>
> https://github.com/conceptdev/xamarin-samples/blob/master/TaskyProPortable/
>
> there is a few basic Linq statements in here
>
>
> https://github.com/conceptdev/xamarin-samples/blob/master/TaskyProPortable/Tasky.Core.Portable/DL/TaskDatabase.cs
>
> HTH
>
>
> On Tue, Aug 21, 2012 at 10:05 AM, Jason Awbrey  wrote:
>
>> can I use LINQ in a PCL project?
>>
>>
>> On Mon, Aug 20, 2012 at 3:01 PM, Jeff Stedfast  wrote:
>>
>>> You can actually create a single "Portable Library Project".
>>>
>>> It's a bit of a hack, but it works.
>>>
>>> Jeff
>>>
>>> On Mon, Aug 20, 2012 at 3:58 PM, Jason Awbrey  wrote:
>>>
>>>> If I want to share domain code in a library project between MT/MfA/WP7,
>>>> I have to create separate csproj files for each platform, correct?
>>>>
>>>> Are there any tools for converting the csproj files for each platform,
>>>> or is it best just to do it manually?
>>>>
>>>> JA
>>>>
>>>> ___
>>>> 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


Re: [MonoTouch] cross platform library code

2012-08-20 Thread Jason Awbrey
can I use LINQ in a PCL project?

On Mon, Aug 20, 2012 at 3:01 PM, Jeff Stedfast  wrote:

> You can actually create a single "Portable Library Project".
>
> It's a bit of a hack, but it works.
>
> Jeff
>
> On Mon, Aug 20, 2012 at 3:58 PM, Jason Awbrey  wrote:
>
>> If I want to share domain code in a library project between MT/MfA/WP7, I
>> have to create separate csproj files for each platform, correct?
>>
>> Are there any tools for converting the csproj files for each platform, or
>> is it best just to do it manually?
>>
>> JA
>>
>> ___
>> 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 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
wrote:

> 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] IOS 6 + reference count alert send by Xam

2012-08-15 Thread Jason Awbrey
there is an Apple event scheduled for 9/12 that is expected to be an iOS
hardware announcement - probably a safe guess that iOS 6 will go live on or
before that date

On Wed, Aug 15, 2012 at 12:05 PM, rnendel11  wrote:

> Is there some definitive date when IOS 6 is expected to be released?  So
> that
> I can make sure to calculate back from some date and make sure I get my
> resubmissions in?
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/IOS-6-reference-count-alert-send-by-Xam-tp4656507p4656532.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] PUT call to server using WebRequest

2012-08-12 Thread Jason Awbrey
I believe you can get WebClient status codes by catching WebException and
looking at it's Response.StatusCode

assuming you're only interested in failure status codes, this might work
for you

On Sun, Aug 12, 2012 at 8:34 AM, Phil Cockfield  wrote:

> Hello!
>
> I'm using the *HttpWebRequest *to do a PUT on my server.  The web-server
> is Node.js.  The code is very by the book standard stuff:
>
>
> // Prepare the data.
>   var dataText = data.ToString();
>   var byteArray = dataText.ToByteArray();
>
>
>   // Setup the web-request.
>
>   var req = WebRequest.Create(url);
>   req.Method = "PUT";
>   req.ContentType = "Content-Type: application/json; charset=utf-8";
>   req.ContentLength = byteArray.Length;
>
>   // Process the stream.
>   var dataStream = req.*GetRequestStream*();
>   dataStream.Write(byteArray, 0, byteArray.Length);
>   dataStream.Close();
>
>
>
> The problem is, when I call *GetRequestStream* it issues the request to
> the server and the response is complete before the next line (dataStream.
> Write) executes.  As a result no data is actually sent.  It's like the
> stream prematurely flushes upon creation.  In fact, I didn't think it was
> supposed to call the server at all until *GetResponse* was invoked.
>
> Am I doing something dumb here?  Or, is it something with the way Node is
> behaving (that would be weird if it were).  Or is HttpWebRequest flakey?
>
> This works if I use *WebClient*.  But I need HttpStatus codes - and my
> understanding is you can't get at those from *WebClient*.  (If you can, I
> can't find them anywhere! :-))
>
> Anyone else seeing weirdness with *HttpWebRequest*?
>
> --
> *Phil *Cockfield
>
>
>
>
> ___
> 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] need some advice on the best platform

2012-08-12 Thread Jason Awbrey
have you tried using testflightapp.com to manage your testing?  It
simplifies the process of doing ad hoc deployment & testing, and has tools
to allow you to capture logs from test devices.  Highly recommended, and
free

specifically, what sorts of problems are you having when deploying?

On Sun, Aug 12, 2012 at 5:39 AM, Alex White  wrote:

> Hi,
>
> I have been developing an iPhone/iPad application, TBH the development is
> going fine most of my issues now are deployment to devices to allow people
> to debug the application, this has been very hit and miss (with very little
> hit!), it is unacceptable for me to spend many hours in front of a client
> trying to debug why I cannot deploy to their devices, this will undermine
> their confidence in the project, so my question is this, what is the most
> stable version of mac OX, Xcode, MonoTouch and IOS for both the iPhone and
> iPad, as I will now flush the macbook and start again, otherwise my project
> will fail at this stage, it is not acceptable to have to get anyone
> involved when I am deploying to their phones other than me, this just does
> not look professional at all. I have spent the last couple of days
> attempting to deploy to my wires iPad with zero success. My client's
> patients is wearing thin with my excuses.
>
> Thanks.
>
> Kind Regards
>
>
> Alex
> ___
> 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] How to show an imagegallery in IPAD application --

2012-08-07 Thread Jason Awbrey
try using a generic list like List or ArrayList instead

On Tue, Aug 7, 2012 at 6:13 AM, proindigo  wrote:

> OK. Having some issues constructing the code block that is supposed to
> return
> a collection of images.
>
> Here is what I am trying to do -->
>
>
> public UIImage[] ReturnAssemblyImages(int assemblyid)
> {
> this.CreateDBConnection ();
> try
> {
> string strimg="select Photo from Photo
> where PhotoOfflineID in (select
> PhotoID from AssemblyPhoto where AssemblyID="+assemblyid+")";
> SqliteDataAdapter sda=new
> SqliteDataAdapter(strimg, sconn);
> DataSet ds=new DataSet();
> sda.Fill (ds);
> int imagescount=ds.Tables[0].Rows.Count;
> UIImage[] imgarray=new
> UIImage[imagescount];
> byte[] mybuffer=null;
> for(int y=0; y y++)
> {
>
> mybuffer=(byte[])(ds.Tables[0].Rows[y]["Photo"]);
> UIImage img= UIImage.LoadFromData
> (NSData.FromArray (mybuffer));
>
> }
> }
> catch(Exception exp)
> {
> throw exp;
> }
> this.CloseDBConnection ();
> }
>
> What I am trying to do is return a array of UIImage objects. So I
> initialized the imgarray in my code. But when I try to add the new UIImage
> img to the array, I find that the Add() method is not present. Obviously I
> am going about it the wrong way or so it seems. Could you please help me
> restructure the code properly? Some help needed on this in the earnest.
>
> Thanks in advance.
>
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/How-to-show-an-imagegallery-in-IPAD-application-tp4656388p4656413.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] Take Pictures with IPHone Camera ---

2012-08-03 Thread Jason Awbrey
look at the pastebin sample - they are using a string constant for that
value.  You might create a bug for the MT team to include that as a proper
constant in a future build

On Fri, Aug 3, 2012 at 8:11 AM, proindigo  wrote:

> For some reason or the other I am not getting
> UIImagePickerControllerReferenceURL in my code completion intellisense.
> What
> could be causing this? What namespace do I have to import?
>
> Please direct me.
>
> Thanks.
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Take-Pictures-with-IPHone-Camera-tp4656124p4656339.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] Take Pictures with IPHone Camera ---

2012-08-03 Thread Jason Awbrey
that SO answer is helpfully linked to the iOS SDK docs - and all of those
bits are available in 4.0

here is some MT specific code that may help

http://pastebin.com/Sh5UR6Zq

On Fri, Aug 3, 2012 at 7:25 AM, proindigo  wrote:

> Hi jawbrey,
>
> Thanks for the link.
>
> Two things.
>
> Firstly I am on sdk 4.3 so I am not getting
> UIImagePickerControllerReferenceURL. Or do I have to import some additional
> namespace for that.
>
> Secondly what is this ALAAssetRepresentation. Is it exclusive to only ios
> sdk 5.1? If that be the case then it won't be of much help to me since I am
> on ios sdk 4.3.
>
> Many Thanks.
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Take-Pictures-with-IPHone-Camera-tp4656124p4656335.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] Take Pictures with IPHone Camera ---

2012-08-03 Thread Jason Awbrey
http://stackoverflow.com/questions/11471254/how-to-get-uiimagepicker-selected-image-name

On Fri, Aug 3, 2012 at 5:49 AM, proindigo  wrote:

> I did it!!!
>
>
> All I did was to declare a delegate and an event in my subclass of
> imagepickercontroller, link them up and associate the event with an
> underlying event handler function in the code behind of the view controller
> to fill up my blank imageview.
> If anybody wants the code just pm me. Will be glad to help.
>
> Just one last thing, how do I get the name of the selected image from the
> gallery? In ASP.Net we could do something like PostedFile.FileName. How do
> I
> do it in MonoTouch?
>
> Kindly help.
>
> Cheers!!!  :-)
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Take-Pictures-with-IPHone-Camera-tp4656124p4656333.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] New to MonoTouch and Mac

2012-08-02 Thread Jason Awbrey
to get started, all you really need is a Mac running the free trial of MT -
that will allow you to get a feel for the environment and allow you to run
apps in the simulator.  You only need a device and a license when you're
ready to start testing on an actual device.  You will also need an Apple
dev membership ($99/year) for deployment, but not testing

that said, it is helpful to be familiar with the device and other apps, and
what the UI paradigms are

On Mon, Jul 30, 2012 at 3:47 PM, najak  wrote:

> Hi all.  I am a long time PC/.NET programmer, getting ready to port our
> .NET
> application from WindowsCE/.NET to Mono running on the iPad.
>
> From what I have read so far, it seems that we must obtain the following
> hardware:
> 1. the iPad  ($500)
> 2. a Mac (Mini-Mac) will suffice  ($700)
> 3. MonoTouch seat license ($400)
>
> I'm posting this thread to request advice/hints from others who have gone
> down this path.
>
> Any help/advice I can receive from you would be very much appreciated, such
> as:
>
> 1. Which websites or informational resources helped you the most, to learn
> MonoTouch?
> 2. Is there additional hardware I need besides what is listed above?
> 3. Are there any consultants you know of which might be contracted for a
> short period of time to help jump start our project?
> 4. Anything other tips you think might be helpful.
>
> Thanks in advanced!
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/New-to-MonoTouch-and-Mac-tp4656239.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] Need some advice on plotting locations on a map

2012-07-27 Thread Jason Awbrey
yeah, I was thinking of a static set of data points, not a dynamic one

On Fri, Jul 27, 2012 at 2:08 PM, bobreck  wrote:

> Hmmm don't think so. At least not in my scenario. I have to make a call
> and include my max and min longitude and latitudes. What I pass in is the
> max and min lats/longs from the current visible area of the map. This
> returns POIs just for that region.  If I zoom out, the max and min
> lats/longs change and I need to call my web service again to load the
> additional data.  Or, lets say we don't zoom, but pan east on the map. Then
> my lats/longs change and again I have to call the service and get the new
> POIs for the new area.
>
> There's way too much data to try and load it all.  I can see how if I had
> it
> all loaded and I panned or zoomed how it would just appear.  But I can't
> load everything at once.
>
> Thanks for your response, though.
> Bob
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Need-some-advice-on-plotting-locations-on-a-map-tp4656209p4656211.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] Need some advice on plotting locations on a map

2012-07-27 Thread Jason Awbrey
it's been a long while since I've done this, but I don't think that you
have to do anything to reload the data points when zooming.  The MapView
should redraw them automatically for you

On Fri, Jul 27, 2012 at 12:55 PM, bobreck  wrote:

> Hey guys, need some advice. Any help is extremely appreciated.
>
> I'm still pretty new so bear with me.
>
> I am working on a new app that uses an MKMapView. When the app opens, I
> have
> it locate the user via the location services and plot their location as the
> center of the map.  Next I make a call to a 3rd party web service to pull
> in
> locations that need to be plotted around the user's location.  This would
> be
> pretty similar to something like an app to locate gas/petrol stations
> around
> your current location.
>
> I have that all working.  However, I am confused on how to handle reloading
> those data points when zooming in or out, or even panning, the map.  For
> now
> I am focused on changing the zoom.  So, if I zoom out, I am not sure what
> event to call my data point reload on. I tried using the RegionChanged
> event, but I believe I got into a recursive loop. So can anyone tell me
> what
> event I should be reloading my data on?
>
> Also, is there any easy way to get the current Zoom level?
> Thanks!
> Bob
>
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Need-some-advice-on-plotting-locations-on-a-map-tp4656209.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] Modal Popup in IPAD Application--

2012-07-27 Thread Jason Awbrey
there are three styles you can use for modals - full screen, pagesheet, and
formsheet.  You probably want to use page or form

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ModalViewControllers/ModalViewControllers.html


On Fri, Jul 27, 2012 at 11:10 AM, proindigo  wrote:

> Hi.
>
> So I add a new Ipad View Controller to my project, and design its UI, wire
> up the outlets etc.
>
> Then I do the following:
>
> AddArea ara=new AddArea();
> this.PresentModalViewController(ara);
>
> Also I would want the dimensions of this modal popup to be slightly smaller
> than the actual dimensions of the Ipad parent screens, ie some part of the
> original screen should be visible in the background.
> How do I go about doing it?
>
> Many Thanks.
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Modal-Popup-in-IPAD-Application-tp4656203p4656205.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] Modal Popup in IPAD Application--

2012-07-27 Thread Jason Awbrey
create a viewcontroller that has your editor stuff in it

use PresentModalViewController() to display it as a modal

On Fri, Jul 27, 2012 at 10:22 AM, proindigo  wrote:

> Hello and Greetings.
>
> I have a small requirement. On my screen there are two buttons. One of them
> being 'Add New Area'.
>
> Now the requirement is that when user clicks it, instead of navigating to
> an
> entirely new screen for adding area details like area name, address,
> pincode, a nice pop up should open with some uitextfields in it and a
> button
> for save option. It was very much possible in ASP.Net with Ajax Control
> Toolkit.
>
> Is it at all possible in MonoTouch? If so how? Can someone help me
> structure
> the code? I have searched the internet for some tutorials but to no avail.
> Hence I resorted to the forums. Please help me. It is an absolute necessity
> in my sample application that I am trying to develop.
>
> Look forward to receiving some active help on this one.
>
> Many Thanks in anticipation.
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Modal-Popup-in-IPAD-Application-tp4656203.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] Connecting to WCF via HTTPS

2012-07-26 Thread Jason Awbrey
What kind of header do you need to send?

Sent from my iPhone

On Jul 26, 2012, at 4:05 AM, umauk01  wrote:

> Hi
>
> I'm still looking for hardcode way of passing header data to request object
> If anybody has the code, please pass it on to me.
>
> Thanks
> Uma
> um...@yahoo.com
>
>
>
> --
> View this message in context: 
> http://monotouch.2284126.n4.nabble.com/Connecting-to-WCF-via-HTTPS-tp3516496p4656181.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] Monocross vs Monotouch

2012-07-25 Thread Jason Awbrey
I haven't used it, but from what I understand it's an open source MVC
framework that works with MonoTouch.  I don't think there is any "official"
tie between the MonoCross core team and Xamarin

On Wed, Jul 25, 2012 at 12:42 PM, Mike Kuzminski wrote:

> Could anyone comment on the association of monocross with
> xamarin/monotouch? Is it the same company or people? Is it an add on
> to monotouch?
>
> Thanks,
> Mike
> ___
> 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] Build Date Constant

2012-07-23 Thread Jason Awbrey
are you using

Working Directory ==> ${ProjectDir}

and "Run on external console" checked

(sorry I didn't get more specific about those earlier)

On Mon, Jul 23, 2012 at 10:18 PM, David Junod <
monoto...@reality-check-inc.com> wrote:

> dumb question perhaps, but how do you get it so that it doesn't give a
> build error?  I did exactly as you stated and /bin/date returns 1 (causing
> an error).
>
> On Jul 23, 2012, at 10:02 AM, Jason Awbrey wrote:
>
> I have a custom build command like this
>
> /bin/date > builddate.txt
>
> and then in a tableview cell in my "About" section I have this
>
> cell.DetailTextLabel.Text = System.IO.File.ReadAllText("builddate.txt");
>
> as well as the version data
>
> cell.TextLabel.Text = "Version";
> cell.DetailTextLabel.Text =
> NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString();
>
> On Mon, Jul 23, 2012 at 11:55 AM, David Junod <
> monoto...@reality-check-inc.com> wrote:
>
>> That would be helpful.
>>
>> Thanks
>>
>>
>> On Jul 23, 2012, at 9:51 AM, Jason Awbrey wrote:
>>
>> I've done this before with a post-build action.  If you're interested I
>> can lookup the code I used to do it
>>
>> On Mon, Jul 23, 2012 at 11:50 AM, David Junod <
>> monoto...@reality-check-inc.com> wrote:
>>
>>> Is there any way with MonoDevelop that I can have a constant for when my
>>> app was built (that I don't have to maintain manually).
>>>
>>> Console.WriteLine("Build: {0} {1}", versionString, BUILD_DATE);
>>> ___
>>> 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] App store pricing question

2012-07-23 Thread Jason Awbrey
upgrades to an existing app (excluding in-app purchases) are always free

On Mon, Jul 23, 2012 at 12:35 PM, dickies  wrote:

> I've got an app in the store selling at 69p and have built a lot more
> functionality into it. I'm considering upping the price on the next
> release.
>
> Will existing customers have to pay the difference when they try to upgrade
> the app?
>
> I'm hoping that only new customers will have to pay the new price and
> current customers get the upgrade for free. Is this the case?
>
> Cheers,
>
> Steve
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/App-store-pricing-question-tp4656138.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] Build Date Constant

2012-07-23 Thread Jason Awbrey
I have a custom build command like this

/bin/date > builddate.txt

and then in a tableview cell in my "About" section I have this

cell.DetailTextLabel.Text = System.IO.File.ReadAllText("builddate.txt");

as well as the version data

cell.TextLabel.Text = "Version";
cell.DetailTextLabel.Text =
NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString();

On Mon, Jul 23, 2012 at 11:55 AM, David Junod <
monoto...@reality-check-inc.com> wrote:

> That would be helpful.
>
> Thanks
>
>
> On Jul 23, 2012, at 9:51 AM, Jason Awbrey wrote:
>
> I've done this before with a post-build action.  If you're interested I
> can lookup the code I used to do it
>
> On Mon, Jul 23, 2012 at 11:50 AM, David Junod <
> monoto...@reality-check-inc.com> wrote:
>
>> Is there any way with MonoDevelop that I can have a constant for when my
>> app was built (that I don't have to maintain manually).
>>
>> Console.WriteLine("Build: {0} {1}", versionString, BUILD_DATE);
>> ___
>> 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] Build Date Constant

2012-07-23 Thread Jason Awbrey
I've done this before with a post-build action.  If you're interested I can
lookup the code I used to do it

On Mon, Jul 23, 2012 at 11:50 AM, David Junod <
monoto...@reality-check-inc.com> wrote:

> Is there any way with MonoDevelop that I can have a constant for when my
> app was built (that I don't have to maintain manually).
>
> Console.WriteLine("Build: {0} {1}", versionString, BUILD_DATE);
> ___
> 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] MonoDevelop, deploy to multiple devices

2012-07-20 Thread Jason Awbrey
there should be a "Download to Device" option (or something like that) in
the menu.

On Fri, Jul 20, 2012 at 6:47 AM, HairyJohn  wrote:

> Hi guys,
> Quick question for you, I've just done a release build on my iPhone and I
> want to also deploy it to my iPad. What Ive been doing is forcing a new
> build every time, is there a better way? If I've built it already, can't I
> just get MonoDevelop to deploy it?
>
> Its no biggy, just checking if I've missed something.
>
> Cheers
> Hairy
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/MonoDevelop-deploy-to-multiple-devices-tp4656090.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] ASP.NET equivalent to Webfaction?

2012-07-18 Thread Jason Awbrey
I've never run mono on linux, so I'm not sure what's involved.  A host that
provides it pre-installed, or at least claims to provide support for it,
would be something specific to look for

On Wed, Jul 18, 2012 at 5:02 PM, Chris_M  wrote:

>
> Thanks for the info, Jason. Man, I feel like an ignorant boob for asking
> this, but would constitute "mono friendly" in a Linux-based web hosting
> service?
>
> BTW, I asked Webfaction who they would recommend, and they mentioned
> Rackspace and Arvixe. Like you said, a little pricey, but both look like
> they have a nice array of features. I'll check out Azure as well.
>
> Thanks again!
>
>
> --Chris
>
>
> jawbrey wrote
> >
> > good, affordable Windows hosting is hard to find
> >
> > I've actually been working on a project that is being hosted on Azure -
> > it's working pretty well so far.  I haven't paid much attention to the
> > cost, but I believe there is a free tier for small low-bandwidth sites
> >
> > you might also consider using a Linux host that is mono-friendly and
> going
> > that route
> >
> > On Wed, Jul 18, 2012 at 3:51 PM, Chris_M  wrote:
> >
> >>
> >> I've worked on several projects in the past that have used Webfaction as
> >> the
> >> webhosting company for all their online components. Webfaction is
> >> awesome.
> >> I
> >> have nothing but good things to say about Webfaction. But they're all
> >> Linux
> >> based.
> >>
> >> I am looking up setting up a website and some web services for my next
> >> project, and I was initially drawn back to Webfaction, but it occurs to
> >> me
> >> that with my modest but ever-growing base of C# and .NET knowledge there
> >> might be some nice synergy in going the ASP.NET route (plus I don't
> know
> >> any
> >> PHP or Ruby or Perl and have no real Linux mojo).
> >>
> >> I'm looking for a company that is as fantastic as Webfaction but that is
> >> an
> >> ASP.Net/Windows Server based outfit. Does anyone know of such a company
> >> that
> >> they would enthusiastically recommend?
> >>
> >>
> >> --Chris
> >>
> >>
> >> --
> >> View this message in context:
> >>
> http://monotouch.2284126.n4.nabble.com/ASP-NET-equivalent-to-Webfaction-tp4656052.html
> >> Sent from the MonoTouch mailing list archive at Nabble.com.
> > ___
> > MonoTouch mailing list
> > MonoTouch@.ximian
> > http://lists.ximian.com/mailman/listinfo/monotouch
> >
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/ASP-NET-equivalent-to-Webfaction-tp4656052p4656054.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] ASP.NET equivalent to Webfaction?

2012-07-18 Thread Jason Awbrey
good, affordable Windows hosting is hard to find

I've actually been working on a project that is being hosted on Azure -
it's working pretty well so far.  I haven't paid much attention to the
cost, but I believe there is a free tier for small low-bandwidth sites

you might also consider using a Linux host that is mono-friendly and going
that route

On Wed, Jul 18, 2012 at 3:51 PM, Chris_M  wrote:

>
> I've worked on several projects in the past that have used Webfaction as
> the
> webhosting company for all their online components. Webfaction is awesome.
> I
> have nothing but good things to say about Webfaction. But they're all Linux
> based.
>
> I am looking up setting up a website and some web services for my next
> project, and I was initially drawn back to Webfaction, but it occurs to me
> that with my modest but ever-growing base of C# and .NET knowledge there
> might be some nice synergy in going the ASP.NET route (plus I don't know
> any
> PHP or Ruby or Perl and have no real Linux mojo).
>
> I'm looking for a company that is as fantastic as Webfaction but that is an
> ASP.Net/Windows Server based outfit. Does anyone know of such a company
> that
> they would enthusiastically recommend?
>
>
> --Chris
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/ASP-NET-equivalent-to-Webfaction-tp4656052.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] UITextField Events Help Needed --

2012-07-17 Thread Jason Awbrey
is the event not firing at all, or is it just not updating the UI like you
want?

are you executing the UI update code on the main UI thread?

On Tue, Jul 17, 2012 at 7:41 AM, proindigo  wrote:

> Hello and greetings.
>
> Can you please tell me what event is fired when we enter something in a
> text
> field in iphone application?
>
> I need to call a function when some value is entered in a text field.
>
> I wrote a method and associated it with the value changed event of text
> field, but it is not working.
> I did the following thing -->
>
>
> partial void FillRatingBar (MonoTouch.UIKit.UITextField sender)
> {
> ImageFull.Image=makeImage
> ((int)ImageFull.Bounds.Width-20, 30, 1,
> getTopColor (), getBaseColor ());
> }
>
> Actually I am trying to use core graphics to create a rectangle of some
> color when user enters any value.
> In the above code, 1 stands for progress which we get from the value of a
> slider control. I am hard coding it to 1.
>
> But as it stands I am not getting any result.
>
> Can you tell me why? Is my approach correct?
>
> Thanks.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/UITextField-Events-Help-Needed-tp4656027.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] Youtube Client Library in monotouch

2012-07-14 Thread Jason Awbrey
http://mikebluestein.wordpress.com/2009/09/27/using-monotouch-with-the-net-library-for-the-google-data-api/


http://stackoverflow.com/questions/2679533/using-monotouch-with-google-net-apis


https://bitbucket.org/jbehren/googleapi-monotouch/src

On Sat, Jul 14, 2012 at 5:43 PM, Aziz  wrote:

> Thanks Jason
>
> Ok ..! But I have never convert a .net code to MT library .. So how I do
> that !
> I thought I will find the library easly in monotouch .. But I did"t
>
> What I want in my app is to get the feeds of specific cahnal and display it
> only
>
> Thanks
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Youtube-Client-Library-in-monotouch-tp4655973p4655977.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] Youtube Client Library in monotouch

2012-07-14 Thread Jason Awbrey
Google provides source code for their .NET libraries.  You will need to get
the source for the YouTube library and build it as a MonoTouch library -
this will possibly require some tweaking and modification of the source
code.  Once you have a library built you should be able to use it in MT

if you need more help, please be more specific about what you actually want
to do, and/or where you're stuck.

On Sat, Jul 14, 2012 at 12:20 PM, Aziz  wrote:

> Hi
>
> how to use youtube API client library in monotouch iphone app which
> available in the following languages :
>
> Client Libraries
> Java
> .NET
> PHP
> Python
> Objective-C
> JavaScript
>
> https://developers.google.com/youtube/code
>
> plz help me ..
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Youtube-Client-Library-in-monotouch-tp4655973.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] Monotouch application is getting crashed in device but works fine in simulator

2012-07-12 Thread Jason Awbrey
you've posted this three times in the past hour

On Thu, Jul 12, 2012 at 6:26 AM, srividya  wrote:

> I'm binding a third party(red park sdk) in monotouch. I have created
> wrapper
> for red park dll by using monotouch binding project and implement the dll
> in
> simple application. On assigning the delegate the application crashes. This
> my code for assigning the delegate
>
> rsc=new RscMgr();
> RscMgrDelegate del=new MyRedParkDelegate();
>
> System.Diagnostics.Debug.WriteLine("this"+del);
> rsc.SetDelegate(del);
>
> The crash i'm getting is
>
> Incident Identifier: D4781D02-9D0A-427B-BD33-D867720E9CB6
> CrashReporter Key:   ecaef65d635cbb77be4760eebfa4b05b6be49112
> Hardware Model:  iPhone3,1
> Process: TestRedParkSDK [498]
> Path:
>
> /var/mobile/Applications/5574681C-8028-474D-B0AA-3C71B3C7EA39/TestRedParkSDK.app/TestRedParkSDK
> Identifier:  TestRedParkSDK
> Version: ??? (???)
> Code Type:   ARM (Native)
> Parent Process:  launchd [1]
>
> Date/Time:   2012-07-12 15:09:48.635 +0530
> OS Version:  iPhone OS 5.1.1 (9B206)
> Report Version:  104
>
> Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
> Exception Codes: KERN_PROTECTION_FAILURE at 0x2fd00ff8
> Crashed Thread:  0
>
> Thread 0 name:  Dispatch queue: com.apple.main-thread
> Thread 0 Crashed:
>
> 0   CoreFoundation  0x37391ca0 0x3737b000 + 93344
> 1   CoreFoundation  0x373f99c8 0x3737b000 + 518600
> 2   CoreFoundation  0x3737c848 0x3737b000 + 6216
> 3   CoreFoundation  0x3737c13e 0x3737b000 + 4414
> 4   CoreFoundation  0x37391792 0x3737b000 + 92050
>
> 362 TestRedParkSDK  0x00020278 0x1000 + 127608
>
> 371 TestRedParkSDK  0x00263da8 0x1000 + 2502056
> 372 TestRedParkSDK  0x00020278 0x1000 + 127608
> 373 TestRedParkSDK  0x000fd04c 0x1000 + 1032268
> ...
>
> Thread 1 name:  Dispatch queue: com.apple.libdispatch-manager
> Thread 1:
> 0   libsystem_kernel.dylib  0x315db3a8 0x315da000 + 5032
> 1   libdispatch.dylib   0x30560ea4 0x30554000 + 52900
> 2   libdispatch.dylib   0x30560bc2 0x30554000 + 52162
>
> Thread 2:
> 0   libsystem_kernel.dylib  0x315ebcd4 0x315da000 + 72916
> 1   libsystem_c.dylib   0x33ca3f36 0x33c9b000 + 36662
> 2   libsystem_c.dylib   0x33ca3cc8 0x33c9b000 + 36040
>
> Thread 3:
> 0   libsystem_kernel.dylib  0x315eb470 0x315da000 + 70768
> 1   libsystem_c.dylib   0x33ca66d0 0x33c9b000 + 46800
> 2   TestRedParkSDK  0x001ad9a4 0x1000 + 176
> 3   TestRedParkSDK  0x001aeaec 0x1000 + 1759980
> 4   TestRedParkSDK  0x001ae918 0x1000 + 1759512
> 5   TestRedParkSDK  0x001ad71c 0x1000 + 1754908
> 6   TestRedParkSDK  0x001b07e8 0x1000 + 1767400
> 7   Foundation  0x37c1aa7a 0x37c0a000 + 68218
> 8   Foundation  0x37cae58a 0x37c0a000 + 673162
> 9   libsystem_c.dylib   0x33ca972e 0x33c9b000 + 59182
> 10  libsystem_c.dylib   0x33ca95e8 0x33c9b000 + 58856
>
> Thread 4:
> 0   libsystem_kernel.dylib  0x315ebcd4 0x315da000 + 72916
> 1   libsystem_c.dylib   0x33ca3f36 0x33c9b000 + 36662
> 2   libsystem_c.dylib   0x33ca3cc8 0x33c9b000 + 36040
>
> Thread 5:
> 0   libsystem_kernel.dylib  0x315db054 0x315da000 + 4180
> 1   TestRedParkSDK  0x00250590 0x1000 + 2422160
> 2   TestRedParkSDK  0x001f3a72 0x1000 + 2042482
> 3   TestRedParkSDK  0x0023ae72 0x1000 + 2334322
> 4   TestRedParkSDK  0x0024bf8a 0x1000 + 2404234
> 5   TestRedParkSDK  0x0025dd74 0x1000 + 2477428
> 6   libsystem_c.dylib   0x33ca972e 0x33c9b000 + 59182
> 7   libsystem_c.dylib   0x33ca95e8 0x33c9b000 + 58856
>
> Thread 6 name:  WebThread
> Thread 6:
> 0   libsystem_kernel.dylib  0x315db004 0x315da000 + 4100
> 1   libsystem_kernel.dylib  0x315db1fa 0x315da000 + 4602
> 2   CoreFoundation  0x374083ec 0x3737b000 + 578540
> 3   CoreFoundation  0x37407124 0x3737b000 + 573732
> 4   CoreFoundation  0x3738a49e 0x3737b000 + 62622
> 5   CoreFoundation  0x3738a366 0x3737b000 + 62310
> 6   WebCore 0x32d33c9c 0x32c8a000 + 695452
> 7   libsystem_c.dylib   0x33ca972e 0x33c9b000 + 59182
> 8   libsystem_c.dylib   0x33ca95e8 0x33c9b000 + 58856
>
> Thread 0 crashed with ARM Thread

Re: [MonoTouch] detecting a failed webview load

2012-07-10 Thread Jason Awbrey
UIWebView has a didFailLoadWithError handler - have you tried that?

On Tue, Jul 10, 2012 at 5:56 PM, vulcanCCIT
wrote:

> I am trying to properly catch a failed webview load if you loose network
> connectivity.  I thought a timeout would work but it does not seem to help.
> Perhaps I need to use the Reachability class? prior to the
> webView.LoadRequest() ? I am using that in other parts of my code but I
> thought this try/catch would work:
>
>
> private void OnRefreshSelected (Object o, EventArgs args)
> {
> try {
> this.Title = "Loading...";
>
> UIApplication.SharedApplication.NetworkActivityIndicatorVisible = true;
> webView.LoadRequest (new NSUrlRequest (new
> NSUrl (_camURL),
> NSUrlRequestCachePolicy.ReloadIgnoringLocalCacheData, 30));
>
> webView.LoadFinished += delegate {
>
> UIApplication.SharedApplication.NetworkActivityIndicatorVisible = false;
> this.Title = _boardName;
> };
> }
> catch(Exception ex)
> {
> var alert = new UIAlertView ("Error",
> ex.ToString(), null, "Ok");
> alert.Show();
> }
> }
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/detecting-a-failed-webview-load-tp4655917.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] Try/Catch ok?

2012-07-10 Thread Jason Awbrey
I assume they are left out mostly for the sake of brevity/simplicity

On Tue, Jul 10, 2012 at 12:21 PM, vulcanCCIT
wrote:

>  Awesome, thank you!!  It surprises me that I have not seen this in the
> examples…
>
> ** **
>
> *From:* jawbrey [via MonoTouch] [mailto:ml-node+[hidden 
> email]]
>
> *Sent:* Tuesday, July 10, 2012 10:20 AM
> *To:* Condron, Chuck
> *Subject:* Re: Try/Catch ok?
>
> ** **
>
> sure it's OK
>
> On Tue, Jul 10, 2012 at 12:18 PM, vulcanCCIT <[hidden 
> email]>
> wrote:
>
> As I study Monotouch and look at examples, so far I have not see any of the
> book examples, Xamarin, or other internet examples use any Try/Catch
> blocks.
> Is there a reason not to use those?  Or is this just obmitted for brevity?
> I have ported over an app from objective C to Monotouch and I need to add
> some error checking.
>
> Thank you all!
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Try-Catch-ok-tp4655904.html
> Sent from the MonoTouch mailing list archive at Nabble.com.
> ___
> MonoTouch mailing list
> [hidden email] 
> http://lists.ximian.com/mailman/listinfo/monotouch
>
>
>
> ___
> MonoTouch mailing list
> [hidden email] 
> http://lists.ximian.com/mailman/listinfo/monotouch
>
> 
>  --
>
> *If you reply to this email, your message will be added to the discussion
> below:*
>
> http://monotouch.2284126.n4.nabble.com/Try-Catch-ok-tp4655904p4655905.html
> 
>
> To unsubscribe from Try/Catch ok?, click here.
> NAML
> 
>
> --
> View this message in context: RE: Try/Catch 
> ok?
>
> Sent from the MonoTouch mailing list 
> archiveat 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] Try/Catch ok?

2012-07-10 Thread Jason Awbrey
sure it's OK

On Tue, Jul 10, 2012 at 12:18 PM, vulcanCCIT
wrote:

> As I study Monotouch and look at examples, so far I have not see any of the
> book examples, Xamarin, or other internet examples use any Try/Catch
> blocks.
> Is there a reason not to use those?  Or is this just obmitted for brevity?
> I have ported over an app from objective C to Monotouch and I need to add
> some error checking.
>
> Thank you all!
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Try-Catch-ok-tp4655904.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] question regarding access UIWindow

2012-07-09 Thread Jason Awbrey
UIApplication.SharedApplication.Windows is a list of all your apps windows,
ordered (I think) front to back

On Mon, Jul 9, 2012 at 10:17 PM, Kelvin  wrote:

> Hi,
>
> Is there a way to declare UIWindow as a global variable, so I can access it
> from any where in the program?
>
> For example:
> If I declare an UIWindow as mainWindow in AppDelegate, how would I access
> mainWindow from another classes?
>
> Thanks,
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/question-regarding-access-UIWindow-tp4655878.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] Guid.Parse doesn't seem to exist with Reflection

2012-07-09 Thread Jason Awbrey
does MT support Guid.Parse()?  It appears to have been introduced in .NET
4.0, and I don't think MT supports many 4.0 features yet

you can achieve the same thing by passing a string into Guid's constructor,
so you can probably add a special case to handle this

On Mon, Jul 9, 2012 at 10:14 AM, eclipsed4utoo  wrote:

> I am trying to use reflection to create a generic method for converting an
> object value to a specified type.
>
> public T ConvertTo(object value)
>
> This seems to work fine in MonoTouch for almost every type, except for
> Guid.
> When I use this code...
>
> Type myType = typeof(Guid);
> MethodInfo method = myType.GetMethod("Parse", new[] { typeof(string) });
> T newValue = (T)method.Invoke(null, new[] { value });
>
> 'method' is null.  This works fine in .Net 4.0, so I am not sure what the
> problem is.
>
> I've also tried "ParseExact", but I get the same error.  Any help?
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Guid-Parse-doesn-t-seem-to-exist-with-Reflection-tp4655870.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] Implementing UIPickerView with data from Database --

2012-07-07 Thread Jason Awbrey
I haven't used the Picker much, but I would suggest trying to get it to
work first with some static data.  Then once you understand how it works,
try plugging in "live" data from the db.

On Fri, Jul 6, 2012 at 3:00 AM, proindigo  wrote:

> OK I have fixed the issue. Had to add an event to the
> PickerDataSourceClass.
> The error has disappeared. But I am not getting the items in my picker
> control. It is completely blank. This is how I have gone about the problem.
> Please go through the code listings below to have an understanding of my
> approach. Maybe you will be able to spot some logical mistakes.
>
> Here they are:-->
>
> PickerFacilityTemplate.cs
> --
> using System;
>
> namespace ASTONAPP
> {
> public class PickerFacilityTemplate
> {
> public PickerFacilityTemplate ()
> {
> }
>
> public int AssessmentID{get; set;}
> public int FacilityID{get; set;}
> public string FacilityName{get; set;}
> }
> }
>
>
> PickerFacilityTemplateGroup.cs
> 
> using System;
> using System.Collections;
> using System.Collections.Generic;
> using System.Data;
> using System.IO;
> using MonoTouch.UIKit;
> namespace ASTONAPP
> {
> public class PickerFacilityTemplateGroup
> {
> public PickerFacilityTemplateGroup ()
> {
> }
>
> public List Items
> {
> get { return this._items; }
> set { this._items = value; }
> }
> protected List _items=new
> List();
> }
> }
>
> PickerDataModelSource.cs
> --
> using System;
> using System.Collections;
> using MonoTouch.UIKit;
> using System.Configuration;
> using System.IO;
> using System.Collections.Generic;
> using Mono.Data.Sqlite;
> using System.Data;
> using System.Data.Common;
> namespace ASTONAPP
> {
> public class PickerDataModelSource: UIPickerViewModel
> {
> public PickerDataModelSource ()
> {
> }
>
> public PickerDataModelSource
> (List lst)
> {
> this.Items=lst;
> }
>
> public event EventHandler ValueChanged;
>
> public List Items ;
>
>
> List _items = new
> List();
>
> public PickerFacilityTemplate SelectedItem
> {
> get
> {
> //return this._items[this._selectedIndex];
> return this._items[1];
> }
> }
> public int _selectedIndex = 0;
>
> public override int GetRowsInComponent (UIPickerView
> picker, int
> component)
> {
> return this._items.Count;
> }
>
> public override string GetTitle (UIPickerView picker, int
> row, int
> component)
> {
> List titles=new List();
> foreach(PickerFacilityTemplate pftp in _items)
> {
> //return
> this._items[row].FacilityName.ToString ();
> titles.Add (pftp.FacilityName.ToString ());
> }
> return titles.ToString ();
>
> }
> public override int GetComponentCount (UIPickerView picker)
> {
> return 1;
> }
>
> public override void Selected(UIPickerView picker, int
> row, int component)
> {
> this._selectedIndex = row;
> if (this.ValueChanged != null)
> {
> this.ValueChanged (this, new EventArgs ());
> }
> }
>
> }
> }
>
>
>
> The function in my DBHandler where I am fetching the items from database
>
> ---
> public List FetchFacility()
> {
> DataSet ds = new DataSet ();
> string sql = "select * from ClientFacility order
> by FacilityName";
> this.CreateDBConnection ();
> SqliteDataAdapter sda = new SqliteDataAdapter
> (sql, sconn);
> sda.Fill (ds);
> List objfcl=new
> List();
> for(int i=0; i {
> PickerFacilityTemplate pft=new
> PickerFacilityTemplate();
>
>
> pft.AssessmentID=Convert.ToInt32(

Re: [MonoTouch] iTunesConnect cryptography question (publishing)

2012-07-07 Thread Jason Awbrey
personally, I would just say "no".  I don't think you're doing any of the
sorts of things they're worried about

On Fri, Jul 6, 2012 at 6:37 PM, rnendel11  wrote:

> I'm running through the publishing process and iTunes Connect wants to know
> if my app uses cryptography of any kind.
>
> I do salt and hash passwords used to access "community features".  Does
> this
> count as cryptography, or is local hashing/keychain-storing of passwords
> exempt?  The app does not encrypt data for the user, just passwords for its
> own use.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/iTunesConnect-cryptography-question-publishing-tp4655826.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] modal view controller

2012-07-06 Thread Jason Awbrey
you don't get copies of your own mails (at least I don't)

there is a web interface for the list - you can check that to see if your
messages are getting posted

http://ios.xamarin.com/Forums


On Fri, Jul 6, 2012 at 6:28 AM, Greg Munn  wrote:

> In a stroke of genius I have it solved (for me at least).  I turned off
> the passcode lock.  Both Xcode and MonoTouch can upload to the device.
>
> Can you tell me if my emails are making it to the mailing list?  I've sent
> a couple and nothing.
>
> Cheers,
> Greg
>
>
> On 06/07/2012, at 9:20 PM, Alex White wrote:
>
> > Hi Greg,
> >
> > Rolf got involved with this for me, I have an alpha build that fixes
> this issue for me (partially), but I have loads (and I do mean loads) of
> issues with debugging/loading onto the device, at the moment all that works
> is release builds to the phone, I can do anything I want to the simulator,
> I can't even build a reliable test case for things that don't work properly
> so that they can debug it properly.
> >
> > My issue seems to be me downloading the Apple IOS beta 6, I am
> considering wiping the whole computer and starting again, I would not
> normally install a beta but there were significant features being
> changed/removed in the next version that I intend to use that I had to see
> what was going to work or not.
> >
> > ATB
> >
> > Alex
> >
> >
> > On 6 Jul 2012, at 12:13, Greg Munn wrote:
> >
> >> I'm getting this right now as well.  Got any suggestions on how to
> resolve it?  I've rebooted both laptop and phone.
> >>
> >> Cheers,
> >> Greg
> >>
> >>
> >> On 29/06/2012, at 11:50 PM, Alex White wrote:
> >>
> >>> Actually tried your suggestion again and it worked this time, I am
> 100% positive I tried that before, but I am having loads of intermittent
> problems with mono at the moment, I seem to have days when I cannot upload
> anything to my iPhone then it just starts working again.
> >>>
> >>> e.g.
> >>>
> >>> Installation failed: AMDeviceStartService returned: 0x0 (kAMDSuccess)
> >>> error MT1006: Could not install the application
> '/Users/#/Projects/WizPR/WizPR/bin/iPhone/Debug/WizPR.app' on the
> device '': AMDeviceStartService returned: 0x0 (kAMDSuccess).
> >>> The application was terminated by a signal: SIGHUP
> >>>
> >>> thanks again.
> >>>
> >>> ATB
> >>>
> >>> Alex
> >>>
> >>
> >
>
> ___
> 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] Impact on load time with many assemblies

2012-07-06 Thread Jason Awbrey
all code is compiled into a single executable.  If you look at the dll
files included in a build they're just xml metadata, not code

On Fri, Jul 6, 2012 at 6:33 AM, sgmunn  wrote:

> Does anyone have any knowledge of what impact having multiple assemblies
> in a MonoTouch project would have for start up performance?
>
> I had thought that having quite a few assemblies might impact initial
> start up times and have been putting library code into one project just to
> minimise loading times, but I've read that the assemblies are stripped of
> all but metadata and the code is linked into the actual app.  If this is
> the case then I suspect it wouldn't make any difference to load times and I
> should separate my library code where it makes sense.
>
> Am I on the right track, or completely off base.
>
> Cheers,
> Greg
> --
> View this message in context: Impact on load time with many 
> assemblies
> Sent from the MonoTouch mailing list 
> archiveat 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] UITableView Scenario Help Needed ---

2012-07-05 Thread Jason Awbrey
When you create your TableViewSource class, pass in a reference to the
TableViewController.  Then in your RowSelected method use that reference to
access the NavigationController of the TableViewController

On Thu, Jul 5, 2012 at 4:35 AM, proindigo  wrote:

> I am facing a new problem. Actually after showing the AssessmentID in a
> alert
> I also want the application to load a new screen AssessmentFacility. What I
> have done is that I have created a new class inside my DataSOurce class
> extending from UiViewControlller class. And in it I have written the code
> block for navigating to the desired screen using PushViewController. But
> the
> application is throwing an error. Here is the code block for my entire
> DataSource class.
>
> using System;
> using System.Collections;
> using System.Collections.Generic;
> using System.Data;
> using MonoTouch.UIKit;
> using MonoTouch.Foundation;
> using Mono.Data.Sqlite;
> using ASTONAPP;
> namespace ASTONAPP
> {
> public class BasicTableViewSource:UITableViewSource
>
> {
> Navigator nvg=new Navigator();
> public BasicTableViewSource ()
> {
> }
> int AssessmentID;
> protected List _tableItems;
> string _cellIdentifier = "BasicTableViewCell";
>
> public BasicTableViewSource (List
> items)
> {
> this._tableItems = items;
> }
>
> public override int NumberOfSections (UITableView
> tableView)
> {
> return this._tableItems.Count;
> }
>
>
> public override int RowsInSection (UITableView tableview,
> int section)
> {
> return this._tableItems[section].Items.Count;
> }
>
>
> public override string TitleForHeader (UITableView
> tableView, int section)
> {
> return this._tableItems[section].Name;
> }
>
> public override string TitleForFooter (UITableView
> tableView, int section)
> {
> return this._tableItems[section].Footer;
> }
>
> public override void RowSelected(UITableView tblview,
> NSIndexPath
> indexPath)
> {
> Navigator nvg=new Navigator();
> new UIAlertView("Notification", "You selected:
>
> "+this._tableItems[indexPath.Section].Items[indexPath.Row].ProjectName.ToString
> ()+"", null, "OK", null).Show ();
>
>
> AssessmentID=Convert.ToInt32(this._tableItems[indexPath.Section].Items[indexPath.Row].AssessmentID.ToString
> ());
> new UIAlertView("Notification", "The Corresponding
> AssessmentID Is:
> "+AssessmentID+"", null, "OK", null).Show ();
> nvg.NavigateToFacility ();
> }
> public override UITableViewCell GetCell (UITableView
> tableView,
> MonoTouch.Foundation.NSIndexPath indexPath)
> {
> // declare vars
> UITableViewCell cell =
> tableView.DequeueReusableCell
> (this._cellIdentifier);
>
> // if there are no cells to reuse, create a
> new one
> if (cell == null) {
> cell = new UITableViewCell
> (UITableViewCellStyle.Subtitle,
> this._cellIdentifier);
> }
>
> // create a shortcut to our item
> BasicTableViewItem item = this._tableItems
> [indexPath.Section].Items
> [indexPath.Row];
>
> cell.TextLabel.Text = item.ProjectName;
> cell.DetailTextLabel.Text =
> item.AssessmentID.ToString ();
>
> return cell;
> }
>
>
> }
>
> public class Navigator:UIViewController
> {
> AssessmentFacility asfc;
> public Navigator()
> {
>
> }
>
> public void NavigateToFacility()
> {
> asfc=new AssessmentFacility();
> this.NavigationController.PushViewController
> (asfc, true); < this
> line
> }
> }
>
>
> }
>
> What am I doing wrong here? Can you spot any logical mistake? Is there any
> alternate way to do this?
> Please help me.
>
> Thanks.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/UITableView-Scenario-Help-Needed-tp4655680p4655765.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
>
___
MonoTou

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, proindigo  wrote:

> 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_status_and_enumerated_projects.png
>
>
> Could you please tell me what event gets fired when I select an item from
> my
> table and how to access the AssessmentID [the value that is being shown
> below each project name in each row] for that particular Row? A short
> snippet would be immensely helpful. Look forward eagerly to your reply.
>
> Many Thanks in anticipation.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/UITableView-Scenario-Help-Needed-tp4655680p4655749.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] UITableView Scenario Help Needed ---

2012-07-03 Thread Jason Awbrey
here you are passing in data to the constructor but doing nothing with it -
that's the first thing that jumps out at me as to why you're not getting
any data in the table

public BasicTableViewItemGroup (List lst)
{
}

On Tue, Jul 3, 2012 at 2:42 AM, proindigo  wrote:

> Well I have modified the code a bit for the function CreateTableItems(). It
> makes more sense now, although I am getting two errors.
>
> Here is my modified code block for CreateTableItems()
>
> public void CreateTableItems ()
> {
> List tableItems = new
> List ();
> BasicTableViewItemGroup tGroup;
> tGroup = new BasicTableViewItemGroup
> {Name="Enumerated Projects",
> Footer="Loaded from Database", Items=objdbh.FetchAssessments ()};
> tableItems.Add (tGroup);
> this._tableViewSource = new BasicTableViewSource
> (tableItems);
>
> }
>
> The errors I am getting are,
>
> 1. Error CS0029: Cannot implicitly convert type
> `System.Collections.Generic.List' to
> `System.Collections.Generic.List'
> (CS0029)
> (ASTONAPP) [AssessmentsHome.cs]
>
> 2. Error CS0029: Cannot implicitly convert type
> `ASTONAPP.BasicTableViewItemGroup' to `ASTONAPP.BasicTableViewItem'
> (CS0029)
> (ASTONAPP) [BasicTableViewSource.cs]
>
> For reference see my previous code lisiting sfor the various class files I
> have created.
> Thanks.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/UITableView-Scenario-Help-Needed-tp4655680p4655733.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] UITableView Scenario Help Needed ---

2012-07-01 Thread Jason Awbrey
when you create your cell, you can assign the Tag property to some value
from your data, then retrieve it when your cell is selected

alternately, you can use the indexPath value to create a index into the
array/list/whatever that was used to populate your table, and retrieve the
necessary value from there

On Sat, Jun 30, 2012 at 12:41 PM, proindigo  wrote:

> Hello friends.
>
> I have scenario which I will try to explain in details.
> I have a table ClientAssessments [AssessmentID, ProjectID, ProjectName,
> StartDate].
> Now I am fetching all the data by simple select query and want to show it
> on
> a UITableView column. I want that when someone touches a particular
> ProjectName the corresponding AssessmentID be showing as an alert message
> [showing an alert is not the issue] . Basically I want to fetch the
> corresponding AssessmentID for a selected ProjectName so that it can be
> used
> for subsequent operations. In ASP.NET gridview we used to have
> DataKeyNames
> and CommandArgument to associate an ID with an entry. Is there something
> similar available in UITableView control? I know this is a basic type of
> question but I am just a beginner.
>
> Hope I have been able to explain my requirement clearly.
>
> How can I achieve this? What is the underlying theory? What are the things
> that I need to know? Some code snippets along the way would be really
> helpful for me.
>
> Any kind of assistance will be massively appreciated!
>
> Thanks in anticipation.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/UITableView-Scenario-Help-Needed-tp4655680.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] Include both retina and non-retina images?

2012-07-01 Thread Jason Awbrey
right, you should be able to use just one set of icons/images and iOS will
scale them for you

On Sat, Jun 30, 2012 at 5:42 PM, rnendel11  wrote:

> I'm assuming I do not *need* to add retina launch screens unless I want to
> take advantage of making the launch screen look as good as possible.  On a
> retina device, the standard launch screen is displayed if a retina-specific
> screen is not specified.
>
> Not including retina launch screens is not a "rejection" issue, correct?
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Include-both-retina-and-non-retina-images-tp4655681p4655682.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] MonoTouch with Sqlite Critical Scenario Help Needed

2012-07-01 Thread Jason Awbrey
"BLL_Assessments" in this line should be "BLL_Assessment"

 var result=from item in XDocument.Load ("Assessments.xml").Descendants
("BLL_Assessment")

On Fri, Jun 29, 2012 at 11:17 AM, proindigo  wrote:

> Well just sorted out the issue. Rechecked my code blocks and used the
> scopes{} properly and now the data is being inserted into the table just
> fine. Now I am facing another issue. I am generating an xml file by
> serializing the output received from a webservice and am trying to parse
> this document and insert the data into database. The format of the xml file
> is a bit complex for me [my knowledge of xml manipulation is not strong]. I
> am having trouble reading it.
>
> Here is my xml document -->
> 
> -  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
> - 
>   http://tempuri.org/";>5
>   http://tempuri.org/";>ddd
>   http://tempuri.org/";>1
>   http://tempuri.org/";>5
>   http://tempuri.org/"; />
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>   http://tempuri.org/";>0
>   
> - 
>   http://tempuri.org/";>2
>   http://tempuri.org/";>edrewr
>   http://tempuri.org/";>1
>   http://tempuri.org/";>2
>   http://tempuri.org/"; />
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>   http://tempuri.org/";>0
>   
> - 
>   http://tempuri.org/";>3
>   http://tempuri.org/";>new ass
>   http://tempuri.org/";>1
>   http://tempuri.org/";>3
>   http://tempuri.org/"; />
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>   http://tempuri.org/";>0
>   
> - 
>   http://tempuri.org/";>6
>   http://tempuri.org/";>Protik Assesment
>   http://tempuri.org/";>1
>   http://tempuri.org/";>6
>   http://tempuri.org/"; />
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>   http://tempuri.org/";>0
>   
> - 
>   http://tempuri.org/";>4
>   http://tempuri.org/";>qq
>   http://tempuri.org/";>1
>   http://tempuri.org/";>4
>   http://tempuri.org/"; />
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>   http://tempuri.org/";>0
>   
> - 
>   http://tempuri.org/";>1
>   http://tempuri.org/";>Quality of
> WebSites
>   http://tempuri.org/";>1
>   http://tempuri.org/";>1
>   http://tempuri.org/"; />
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>xmlns="http://tempuri.org/";>0001-01-01T00:00:00
>   http://tempuri.org/";>0
>   
>   
>
> All I want to do is to iterate through the nodes BLL_Assessment and insert
> the value of the attributes into database. I am trying to use LINQ to XML.
> This is the code block I have tried to develop -->
>
> public void InsertAssessments()
> {
> try
> {
> int AssessmentID;
> string ProjectName;
> int ClientID;
> int ProjectID;
> string AssessmentStatusID;
> string ExpectedStartDate;
> string ExpectedEndDate;
> int FacilityID;
> var result=from item in XDocument.Load
> ("Assessments.xml").Descendants
> ("BLL_Assessments")
> select new
> {
> AssessmentID=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"AssessmentID").Value,
> ProjectName =item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"ProjectName").Value,
> ClientID=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"ClientID").Value,
> ProjectID=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"ProjectID").Value,
> AssessmentStatusID=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"AssessmentStatusID").Value,
> ExpectedStartDate=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"ExpectedStartDate").Value,
> ExpectedEndDate=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"ExpectedEndDate").Value,
> FacilityID=item.Element (XNamespace.Get
> ("http://tempuri.org/";)+"FacilityID").Value
>
>
> } ;
> string[] strass=new string[]{"CREATE  TABLE  IF NOT EXISTS
> ClientAssessments('AssessmentOfflineID' integer primary key autoincrement,
> 'ProjectName' text, 'ClientID' integer, 'ProjectID' integer,
> 'AssessmentStatusID' text, 'ExpectedStartDate' text, 'ExpectedEndDate'
> text,
> 'FacilityID' integer)",
> String.Format ("insert into ClientAssessment(AssessmentID,
> ProjectName,
> ClientID, ProjectID, AssessmentStatusID, ExpectedStartDate,
> ExpectedEndDate,
> FacilityID) values('{0}', '{1}', '{2}', '{3}', '{4}', '{5}', '{6}',
> '{7}')",
> AssessmentID, ProjectName, ClientID, ProjectID, AssessmentStatusID,
> ExpectedStartDate, Expecte

Re: [MonoTouch] Problem building for Release|iPhone "Microsoft.Win32.RegistryKey"

2012-07-01 Thread Jason Awbrey
are you referencing any third party libraries?

On Fri, Jun 29, 2012 at 8:55 AM, efontana  wrote:

> I've been building my app for a week now using the iPHone simulator and now
> when I tried
> to build a Release|iPhone i'm getting an error:
>
> "Can not resolve reference: Microsoft.Win32.RegistryKey (MT2002)"
>
> I'm using MT:
>
> Apple Developer Tools:
>  Xcode 4.3.1 (1176)
>  Build 4E1019
> Monotouch: 5.3.4
> Build information:
> Release ID: 30003002
> Git revision: 7bf6ac0ca43c1b12703176ad9933c3484c05c84c-dirty
> Build date: 2012-06-16 04:36:10+
> Xamarin addins: 62ad7268d38c2ece7e00dc32960bd3bdab8fec38
> Operating System:
> Mac OS X 10.7.4
> Darwin Erics-Mac-mini.local 11.4.0 Darwin Kernel Version 11.4.0
> Mon Apr  9 19:32:15 PDT 2012
> root:xnu-1699.26.8~1/RELEASE_X86_64 x86_64
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Problem-building-for-Release-iPhone-Microsoft-Win32-RegistryKey-tp4655660.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] modal view controller

2012-06-29 Thread Jason Awbrey
I'm pretty sure that a modal view can't dismiss itself - it has to ask the
parent to dismiss it

On Fri, Jun 29, 2012 at 7:32 AM, Nic Wise  wrote:

> Try it without the parent
>
> this.DismissModalViewControllerAnimated(true);
>
> works for me :)
>
> On Fri, Jun 29, 2012 at 6:44 AM, Alex White  wrote:
> > Hi,
> >
> > I can't get my head round how to code the a modal view controller.
> >
> > in my calling code
> >
> > _streetview = new StreetviewiPhone(url,true, "RevisionPointsiPhone");
> > this.NavigationController.PresentModalViewController(_streetview, true);
> >
> > which I guess is right?
> >
> > then in the called view controller
> >
> > public void btnClose_Clicked(object sender, EventArgs e) {
> > this.ParentViewController.DismissModalViewControllerAnimated(true);
> > }
> >
> > but this does not work??, any pointers?
> >
> > thanks
> >
> >
> > Alex
> >
> >
> >
> >
> > ___
> > 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
>
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] modal view controller

2012-06-29 Thread Jason Awbrey
you probably need to do the Dismiss in the main UI thread

On Fri, Jun 29, 2012 at 12:44 AM, Alex White  wrote:

> Hi,
>
> I can't get my head round how to code the a modal view controller.
>
> in my calling code
>
> _streetview = new StreetviewiPhone(url,true, "RevisionPointsiPhone");
> this.NavigationController.PresentModalViewController(_streetview, true);
>
> which I guess is right?
>
> then in the called view controller
>
> public void btnClose_Clicked(object sender, EventArgs e) {
> this.ParentViewController.DismissModalViewControllerAnimated(true);
> }
>
> but this does not work??, any pointers?
>
> thanks
>
>
> Alex
>
>
>
>
> ___
> 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] How to apply LUT to CGImage or UIImage in IOS

2012-06-29 Thread Jason Awbrey
Miguel made a helpful suggestion on your SO question

http://stackoverflow.com/questions/11258323/how-to-apply-lut-to-cgimage-or-uiimage-in-ios

On Fri, Jun 29, 2012 at 4:43 AM, pritish
wrote:

> From few days I am searching for applying LUT to CGImage but I didn't get
> anything so please help me how to apply lut over cgimage or uiimage
>
> Pritish M.Deshmukh
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/How-to-apply-LUT-to-CGImage-or-UIImage-in-IOS-tp4655655.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] MonoTouch with Sqlite Critical Scenario Help Needed

2012-06-28 Thread Jason Awbrey
try using  Environment.SpecialFolder.MyDocuments

On Wed, Jun 27, 2012 at 12:32 PM, proindigo  wrote:

> Well, I modified the code block slightly, especially the DBHandler.cs class
> file. Now the database is being created at runtime. But there is a problem.
> Firstly, I am using the firefox addon version 3.7.1 for Sqlite and don't
> know what should be the appropriate extension of the db file, db3 or
> sqlite.
> Next thing is that I have developed the code such that the db file gets
> created in a directory called ASTON Repository inside
> [System.Environment.SpecialFolder.Personal]. But what is happening is that
> it is being created in some place which has a physical path like  --->
> users/Anupam/Library/Application Support/IPhone
>
> Simulator/4.3/SomeRandomlyGeneratedFolderName/Applications/.Documents/DBFile
>
> And a new SomeRandomlyGeneratedFolder is being created every time I run the
> app and . I would like to incorporate some kind of checking logic so that
> so
> that I can stop this spurious folder creation, and stop eating up needless
> resource on the device. I haven't got much idea about where to save my db
> file when the app would be running on an iphone. So please enlighten me.
>
> Under my home directory, I have created a folder called Personal. Is it
> possible to target this folder as the destination, where I can create the
> ASTON Repository directory and inside it the db file? In that case, what
> should be the path expression like?
>
> Can you help me with this issue? I need some active help on this one.
>
> Any kind of help would be immensely appreciated.
> Thanks.
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/MonoTouch-with-Sqlite-Critical-Scenario-Help-Needed-tp4655574p4655609.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] google street view with monotouch

2012-06-27 Thread Jason Awbrey
The maps app does support street view in iOS 5 - click on a pin then
use the person icon

Sent from my iPad

On Jun 27, 2012, at 6:51 PM, Nic Wise  wrote:

> oh, BTW, duedil does it too
>
> http://www.duedil.com/
>
> they appear to be linking to that url (well, a http one, not an https one).
>
> On Wed, Jun 27, 2012 at 9:44 PM, Nic Wise  wrote:
>> Hi Alex
>>
>> (nice location - I used to live about 10 mins from there on Westferry Rd)
>>
>> Anywh
>>
>> I think your options are:
>>
>> 1. Put a MKMapView in, load it up with the lat/lon (parse it out of
>> the URL), and... well, it doesn't do street view, so you are kind of
>> stuck there.
>>
>> 2. Try this: 
>> http://stackoverflow.com/questions/6329934/does-mkmapview-support-the-little-man-street-view
>> - which basically uses a UIWebView to show it, but via the JS api. No
>> idea if it'll work, but it is marked as "correct" on SO :)
>>
>> 3. Try to see what the google stuff is doing on the desktop - use
>> fiddler or charles as a proxy in the middle? - and do that in your iOS
>> code. Hacky, and a bit fragile, but it might work (or, put it on your
>> server so you can change it without redeploying the app!)
>>
>> Last time I checked, streetview uses flash on the PC, so thats out on
>> iOS. The Maps app (well, in iOS5 or less anyway! iOS[REDACTED] doesn't
>> have streetview at all) does it manually - again, you might be able to
>> sniff the traffic and get an image out of that?
>>
>> Maps doesn't work in the simulator, tho - so you'd need to be trying
>> this on the device.
>>
>> So, you are just trying to display the result, right? With a quick
>> play with Charles, I managed to get this out:
>>
>> https://cbks0.google.com/cbk?output=tile&zoom=4&x=0&y=3&cb_client=maps_sv&fover=2&onerr=3&renderer=spherical&v=4&panoid=3D9abaUQzvMsfpKqtyEd2g
>>
>> (its just down the road from there, I had to move to get something not
>> in the cache)
>>
>> Now, I have no idea what the params are tho!! I think it's based on
>> the panoid
>>
>> Cheers
>>
>> Nic
>>
>>
>>
>> On Wed, Jun 27, 2012 at 3:06 PM, Alex White  wrote:
>>> Hi all,
>>>
>>> a small bit of history, I have an existing application that currently runs
>>> on MS windows it is database of points of interest, the application has a
>>> lot of users, each of these users uses google with the street view option to
>>> find these places of interest then using the link button on the page they
>>> copy and paste the actual street view links into their databases, this in
>>> most cases is the proper image of the point of interest not a map view.
>>>
>>> for example
>>>
>>> http://maps.google.co.uk/maps?q=East+Ferry+Road,+Poplar&hl=en&ll=51.491084,-0.030985&spn=0.53,0.058622&sll=51.491843,-0.007523&sspn=0.007642,0.029311&vpsrc=0&t=m&z=15&layer=c&cbll=51.491166,-0.014654&panoid=RH906-yvUj2Wv3WzjuXNWw&cbp=12,183.75,,1,1.82
>>>
>>> these databases contain up to 20,000 links like the one above so moving over
>>> to another system really is not an option considering that most of the work
>>> is still carried out on the PC's and these links are moved onto the
>>> iPhone/iPad for review later.
>>>
>>> I am not getting this to work properly in the UIWebview it is converting it
>>> into some sort of mapping app, this is not what I want it to do, I just want
>>> the UIWebview to display the URL I am passing and provide the results.
>>>
>>> I don't mind if I have to shell out to safari but that does not seem to work
>>> either.
>>>
>>> UIWebView
>>>
>>> NSUrl nsurl = new NSUrl(_address);
>>> NSUrlRequest req = new NSUrlRequest(nsurl);
>>> HtmlViewer.LoadRequest(req);
>>>
>>> openURL
>>>
>>> UIApplication.SharedApplication.OpenUrl (new NSUrl (url));
>>>
>>> I have tried both on the simulator and physical device, I know that Apple
>>> are moving away from google maps but this should still work as it is not
>>> really using the API as it it is web driven.
>>>
>>> Any ideas.
>>>
>>> thanks
>>>
>>> Alex
>>>
>>>
>>>
>>> ___
>>> 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. 
>

Re: [MonoTouch] How long can "In Review" take?

2012-06-27 Thread Jason Awbrey
hmmm... if there was an actual problem I would expect them to contact you.
It may just have gotten lost in the shuffle.  It might be worth contacting
them about it.  You could also try rejecting the binary (if you can at this
point) and re-submitting.

On Wed, Jun 27, 2012 at 2:10 PM, Dean Cleaver <
dean.clea...@xceptionsoftware.com> wrote:

>  This is just an update – was first submitted about a year ago. Like
> yours, this one is too specific for them to run it (unless they used to be
> a Valet).
>
> ** **
>
> Only took about 6 hours to go from submitted to in review, but it’s been
> in review for 2 days, and they’ve not logged in to actually look at
> anything. Just starting to get worried about what they **are** looking at.
> 
>
> ** **
>
> Dino
>
> ** **
>
> *From:* Jason Awbrey [mailto:ja...@awbrey.net]
> *Sent:* Wednesday, June 27, 2012 13:55
> *To:* Dean Cleaver
> *Cc:* monotouch@lists.ximian.com
> *Subject:* Re: [MonoTouch] How long can "In Review" take?
>
> ** **
>
> as far as I know, the app review process is completely, utterly opaque.
> Produce Development is a sieve compared to the inner workings of the app
> review process
>
> if this is your first submission of an app, it wouldn't surprise me if it
> took longer, but that's based on no real data at all.  My past experience
> with a semi-complex biz app was that it took 2-3 days to get reviewed, and
> then the review itself was less than a day.  My gut instinct is also that
> they don't actually review every single feature of an app - mine was too
> domain specific for someone with no knowledge to really dig into, and they
> never asked for any guidance during the review process
>
> On Wed, Jun 27, 2012 at 9:43 AM, Dean Cleaver <
> dean.clea...@xceptionsoftware.com> wrote:
>
> Our app went to “in Review” Monday afternoon. It’s now Wednesday morning.*
> ***
>
>  
>
> Now, the app isn’t simple – has about 90 view controllers (not counting
> dynamic dialogs). But I know for a fact that they haven’t even logged in,
> nor have they requested a new password. So at best – they have seen 3 view
> controllers. A login view, a support view, and a request password view.***
> *
>
>  
>
> Is 3 or 4 hours per view controller normal? Or has someone started
> reviewing it and forgotten?
>
>  
>
> Dino
>
>
> ___
> 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] How long can "In Review" take?

2012-06-27 Thread Jason Awbrey
as far as I know, the app review process is completely, utterly opaque.
Produce Development is a sieve compared to the inner workings of the app
review process

if this is your first submission of an app, it wouldn't surprise me if it
took longer, but that's based on no real data at all.  My past experience
with a semi-complex biz app was that it took 2-3 days to get reviewed, and
then the review itself was less than a day.  My gut instinct is also that
they don't actually review every single feature of an app - mine was too
domain specific for someone with no knowledge to really dig into, and they
never asked for any guidance during the review process

On Wed, Jun 27, 2012 at 9:43 AM, Dean Cleaver <
dean.clea...@xceptionsoftware.com> wrote:

>  Our app went to “in Review” Monday afternoon. It’s now Wednesday morning.
> 
>
> ** **
>
> Now, the app isn’t simple – has about 90 view controllers (not counting
> dynamic dialogs). But I know for a fact that they haven’t even logged in,
> nor have they requested a new password. So at best – they have seen 3 view
> controllers. A login view, a support view, and a request password view.***
> *
>
> ** **
>
> Is 3 or 4 hours per view controller normal? Or has someone started
> reviewing it and forgotten?
>
> ** **
>
> Dino
>
> ___
> 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] google street view with monotouch

2012-06-27 Thread Jason Awbrey
I think iOS detects any link to google maps and passes that to the mapping
application.  This is possibly a requirement of their agreement with
Google, and I'd be curious to see if this behavior changes in iOS 6.  Even
if you explicitly type in maps.google.com in mobile safari, the mobile maps
UI does not give you a street view option.

You can get into street view from the maps app by clicking on a pin, but I
don't know if there is any way to automate this from an external link

I know this doesn't really answer your question, but if your goal is to
have street view on your device it appears that both Apple and Google are
working against you

On Wed, Jun 27, 2012 at 9:06 AM, Alex White  wrote:

> Hi all,
>
> a small bit of history, I have an existing application that currently runs
> on MS windows it is database of points of interest, the application has a
> lot of users, each of these users uses google with the street view option
> to find these places of interest then using the link button on the page
> they copy and paste the actual street view links into their databases, this
> in most cases is the proper image of the point of interest not a map view.
>
> for example
>
>
> http://maps.google.co.uk/maps?q=East+Ferry+Road,+Poplar&hl=en&ll=51.491084,-0.030985&spn=0.53,0.058622&sll=51.491843,-0.007523&sspn=0.007642,0.029311&vpsrc=0&t=m&z=15&layer=c&cbll=51.491166,-0.014654&panoid=RH906-yvUj2Wv3WzjuXNWw&cbp=12,183.75,,1,1.82
>
> these databases contain up to 20,000 links like the one above so moving
> over to another system really is not an option considering that most of the
> work is still carried out on the PC's and these links are moved onto the
> iPhone/iPad for review later.
>
> I am not getting this to work properly in the UIWebview it is converting
> it into some sort of mapping app, this is not what I want it to do, I just
> want the UIWebview to display the URL I am passing and provide the results.
>
> I don't mind if I have to shell out to safari but that does not seem to
> work either.
>
> UIWebView
>
> NSUrl nsurl = new NSUrl(_address);
> NSUrlRequest req = new NSUrlRequest(nsurl);
> HtmlViewer.LoadRequest(req);
>
> openURL
>
> UIApplication.SharedApplication.OpenUrl (new NSUrl (url));
>
> I have tried both on the simulator and physical device, I know that Apple
> are moving away from google maps but this should still work as it is not
> really using the API as it it is web driven.
>
> Any ideas.
>
> thanks
>
> Alex
>
>
>
> ___
> 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] Need help with basic MT.Dialog

2012-06-26 Thread Jason Awbrey
at a glance, it appears that you're using Attributes but don't have any
actual code in that class.  If you look at the Expense.cs example again,
you'll see that the attributes are applied to the following line of code in
the class

On Tue, Jun 26, 2012 at 2:17 PM, Chris_M  wrote:

>
> I need to have a Help screen for my app. I just need a simple table view
> listing help topics, with the idea being that the user can tap a cell and
> go
> to a new view with text on the topic in question.
>
> Although I've done a lot of work the past few weeks with UITableViews used
> in various ways, I thought this Help functionality would be a good
> opportunity to use MT.Dialog.
>
> I decided to make my Help screen by imitating the MTDReflectionWalkthrough
> project because it seemed like the simplest and easiest example to follow.
> I
> decided to make a Help class file as a parallel to the Expense file used in
> the example. I just wanted to get the basic structure up and running (I
> haven't worried about how to get tapping an element to push the new view
> with help text on the tapped topic), so this is what I wrote:
>
> using System;
> using MonoTouch.Dialog;
>
> namespace CountyInfo
> {
>public class Help
>{
>[Section ("Help Topics")]
>
>[StringElement ("Frequently Asked Questions", null)]
>
>[StringElement ("How the App Works", null)]
>
>[StringElement ("Searching for County Information", null)]
>
>[StringElement ("County Regions", null)]
>
>
>[Section]
>
>[StringElement ("About Thios App", null)]
>
>}
> }
>
> I have no idea yet if this will look like I want or support the
> functionality I'm after, but it seemed like a safe start. But oddly (to me
> at least) when I compile I get an "unexpected symbol }" error message for
> the second-to-last closing curly bracket. That doesn't make sense to me
> unless there's some sort of symbol I'm supposed to be using in the
> MT.Dialog
> code there, but I don't know what that would be.
>
> Can anyone tell me what I'm doing wrong there?
>
>
> --Chris
>
>
>
>
> --
> View this message in context:
> http://monotouch.2284126.n4.nabble.com/Need-help-with-basic-MT-Dialog-tp4655588.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


  1   2   3   4   >