-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My MonoTouch Version Info:
Release ID: 20401003
Git revision: 2f1746af36f421d262dcd2b0542ce86b12158f02
Build date: 2010-12-23 23:13:38+0000
The MFMailComposeViewController is displayed and works correctly as a dialog using the following code:
if (MFMailComposeViewController.CanSendMail)
{
…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Hello all, A few weeks ago it was announced that I will be speaking at the Norwegian Developers Conference 2010 on MonoTouch. I'll be doing two session, an introduction to MonoTouch and developing for iPhone, iPod Touch and the iPad as well as deep dive into MonoTouch and the ecosystem that is around…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm a newbie. I can't figure out how and where to call ResignFirstResponder to get rid of the keyboard when the user finished entering the text in an UITextField. I'm a bit confused by the UIResponder class. Mono documentation says: "To dismiss the keyboard, send the UIResponder.ResignFirstResponder…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've had Xcode (3.2.1 - SnowLeopard, iphone 3.1.3) installed for a while, and I can run and build apps on it fine.
I installed MonoTouch, as I want to leverage the 8+ years of .NET skills I have :)
So I installed:
Mono: MonoFramework-2.6.1_1.macos10.novell.x86
MonoTouch: monotouch-eval-1.5.0
MonoDevelop:…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to resize an image loaded from disk - a JPG or PNG (I don't know the format when I load it) - and then save it back to disk.
I've got the following code which I've tried to port from objective-c, however I've got stuck on the last parts. Original Objective-C.
This may not be the best…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to understand when I should use a container versus manually injecting dependencies. If I have an application that uses a 1-2 interfaces and only has 1-2 concrete implementations for each interface, I would lean towards just handling that myself.
If I have a small application that uses…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What's the simplest IOC container for C#? Is simple to learn and get productive with for a small app. In my case a winforms app which I want to abstract the data layer for later potential migration to a web-service for the data layer.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How should the configuration for an IoC container be organized? I know that registering by code should be placed at the highest level in an application, but what if an application had hundreds of dependencies that need to be registered? Same with XML configurations. I know that you can split up…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
For the purpose of this discussion, there are two kinds of parameters an object constructor might take: state dependency or service dependency. Supplying a service dependency with an IOC container is easy: DI takes over. But in contrast, state dependencies are usually only known to the client. …
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been using Dependency Injection (DI) for awhile, injecting either in a constructor, property, or method. I've never felt a need to use an Inversion of Control (IoC) container. However, the more I read, the more pressure I feel from the community to use an IoC container.
I played with .NET…
>>> More