0
votes
1answer
44 views

FlyoutNavigation Controller

Using MonoDevelop, I have been looking at an IOS implementation of a side slide out menu using FlyoutNavigationController, but have hit a couple of stumbling blocks. Firstly, how can you access the ...
1
vote
2answers
32 views

StyledStringElement 'Tapped' event

So, I am attempting to open an email interface when a user clicks on the 'StyledStringElement' - To do this I have been calling the tapped event yet I have gained the error - "Error CS1502: The ...
0
votes
1answer
71 views

how to add Back button to go back to previous MonoTouch storyboard view?

In my Xamarin Studio C# MonoTouch storyboard, I have several views and each one has a button to do a modal seque to common view call "ultrasound". How do I add a Back button to Ultrasound view that ...
0
votes
1answer
87 views

Occasional SIGSEGV in NSArray binding

I have the following property that I am binding: @property (nonatomic, readwrite, retain) NSArray* activeTasks; That I bind with the following code: [Export("activeTasks", ...
0
votes
1answer
37 views

Issues while using Stylecop addin for Monodevelop

I am trying to use the Stylecop addin for Monodevelop - http://addins.monodevelop.com/Project/Index/54. I have a custom policy file that i use in Visual studio (its a Settings.Stylecop file), and now ...
0
votes
0answers
84 views

monotouch youtube json parsing using newtownsoft.json

I have been trying to parse a youtube request using the Newtownsoft.JSON reference within MonoDevelop/MonoTouch, it runs the request but sends back an empty LIST. Any Suggestions on how to parse ...
1
vote
1answer
131 views

ExpandableListView in iOS

I am trying to get my brain around what I can and can't reasonably do UI-wise in a multi-platform app. Initially we are only concerned about iOS and Android, but may need a mobile Windows version ...
0
votes
1answer
111 views

I've exported my highlighting scheme in Xamarin Studio. Now how do I import it?

The lastest update of Xamarin Studio changed how syntax highlighting is stored and exported, apparently to make it compatible with Visual Studio, and as a result my customized scheme was lost. I ...
1
vote
1answer
180 views

Solution file configuration mapping not working properly when building Xamarin.iOS projects from the command line

I'm trying to get Jenkins to build a Xamarin.iOS / MonoTouch project, and I've created some different configurations in my solution & project files to control how things are built from one ...
1
vote
2answers
375 views

Xamarin Studio after update lost syntax highlighting scheme, can't import

I just updated my Xamarin Studio to 4.0.2 (build 18), and now all my custom syntax highlighting is gone! When I tried to import my saved highlighting scheme, it silently failed. I noticed that the ...
0
votes
2answers
224 views

Same UI in iOS and Android

This one is a quick question regarding the possibility of having the same LnF (same look) on Android and iOS, is there an API that can provide something like this? SImilar to MAUI in MoSync or IwUI in ...
0
votes
1answer
207 views

Deserialize json to object using mono touch for iPhone

Is it possible to deserialize a JSON string to an object without using the DataContractJsonSerializer in System.ServiceModel.Web? I have the following code but I need a payed license to use it... ...
0
votes
0answers
55 views

Different frameworks, different costs [duplicate]

I am looking into developing some hybrid apps for a friend who wants to get into the market. I am confused about what the difference is between monotouch, monodroid, and monocross is though. ...
0
votes
0answers
153 views

Failed To Compile Error When Run LibGdx Project

I am porting my game which is developed in Libgdx Platform.Now i am trying to port in IOS.When i run my project it getting me this error :- Error MT5103: Failed to compile the file ...
0
votes
1answer
70 views

Renaming namespaces in MonoTouch

After I renamed my namespaces in my MonoTouch-Solution in MonoDevelop I can't build the app, because all the referencing outlets of the UI-components are not found. I already reopened my XIB in ...
1
vote
1answer
70 views

Monotouch Binding Categories (Using Category Attribute)

I am trying to bind the lib XYOrigami but seem to be hitting a few issues. The current documentation on Xamarin.com docs advises using the Category attribute, i get an error advising this could not be ...
1
vote
1answer
134 views

Programmatically measure a PNG image's padding/clear space on sides

Is it possible to programmatically measure the padding (clear space) on the sides (left right top bottom) of a PNG in C#? Could I somehow parse the image pixel by pixel starting at the sides checking ...
0
votes
0answers
79 views

Scrolling of Tableview is crashing the Monotouch based iOS App

Hi i am right now developing a custom cell based tableview by using Monotouch. The table view is showing data properly in custom cell. But when i tried to scroll the table view, it is crashing the ...
1
vote
1answer
73 views

Why can't I reference one project from another (but CAN use statics)?

This one is weird. I've got a MonoDevelop/MonoTouch project (call it MyApp) that references another project (call it MyUtils), which is a Portable Class Library (targeting .NET 4.0.3, if that is ...
0
votes
2answers
109 views

MonoDevelop fails when trying to debug on device

I'm trying to install the iOS app I'm developing on my device, but each time I try MonoDevelop crashes. First the CPU usage spikes and then it stops responding. It seems to be failing when the ...
0
votes
1answer
310 views

UITableView navigation in monotouch

I'm using mono develop 3.1.1 to build an IOS application. I'm receiving an object reference error (see >>>) from my reference to the navigation controller that I've not declared properly. My ...
1
vote
1answer
21 views

mono delveloper memory profiller do not start up

I have a very annoying problem. I used the mono developer memory profiller and it worked like a charm. But then I restarted my computer and now the profiller do not start up. I disabled the "enable ...
0
votes
1answer
114 views

QuartzCore.framework for Mono Develop

I'm fine with Mono Develop's native-supported iOS libraries. But when I need such as a 3rd party library I get stuck. QuartzCore is a successful library,but written in Objective-C. I know there is ...
0
votes
1answer
413 views

Xamarin monotouch adding license

I've installed monotouch, monodevelop trial version on my Mac. I now have a license (both serial key and a file), and I wonder how to I add the license to monotouch and monodeveloper so that I can run ...
0
votes
1answer
173 views

Storyboard and single UIViewController orientation lock

I have made my application with storyboard and i have set in project option -> Supported Device Orientation -> All Orientation (Portrait, Landscape Left, Landscape Right, Upside Down), because i want ...
1
vote
1answer
93 views

How to use sharpziplib in Monotouch?

Hi I need to unzip a file in Monotouch for an iOS (and Andriod later) App and sharpziplib looks like a good choice (is it?). But how do I go about adding it in MonoDevelop (I have the latest version.) ...
0
votes
1answer
39 views

CameraOverlay goes to the background, and ActiveRegion is blank in front

I am using RedLaser and MonoTouch to develop a simple barcode scanning App. I have used the Sample code provided and I am able to deploy my code to the iphone and it scans Barcodes fine. However, ...
2
votes
2answers
216 views

MonoTouch app cannot build/deploy to iphone device but it works fine on iSimulator

I am using the RedLaser binding for Monotouch to create an app that scans barcodes. It works nice like a charm on iSimulator, but when I try deploying to a real device (switch running environment ...
1
vote
1answer
91 views

UIViewController class not generated in MonoTouch

im trying to create a collection view controller in a Storyboard. After adding it and renaming it to MyCollectionViewController i return to Monotouch. There is no created class called ...
1
vote
1answer
67 views

MonoTouch --keeptemp output

I try to figure out how I could get the main.m template and other code from MonoTouch when i compile my project with the additional mtouch arguments -v -v -v --keeptemp. This is suggested in older ...
2
votes
1answer
165 views

RedLaser Sample App (MonoTouch) closes with no exception when it loads BarcodePickerController

I am developing an application where I need to scan few barcodes in an ios App. I was asked to used RedLaser library with my monotouch application. I am able to compile, build, and run the ...
2
votes
1answer
87 views

MonoTouch: Can't create PSTitleValueSpecifier

I'm trying to create a PSTitleValueSpecifier in my settings bundle but it never appears when I run the app and look in the settings. According to the Apple documentation it needs something called ...
0
votes
0answers
68 views

MonoDevelop WCF Service time out on Custom type

I am running MonoDevelop and Monotouch on a Mac with OSX 10.8.2. I am connecting to a .NET WCF Service. The service at the moment has 2 methods. One method returns List < string > and the ...
1
vote
2answers
137 views

What is the minimum cost of deploying an iphone app to a single phone from monotouch?

If I want to deploy a iphone app just to my phone (not the app store to sell to others) what is the minimum things you need to purchase? Do I have to spend the $399 on monotouch and the $99 yearly ...
0
votes
1answer
169 views

What is the MonoDevelop default font?

I'm wondering what it is - I particularly like how they render the lowercase "l" and crossed zero - imho, they look better than Consolas / Inconsolata. I've tried both googling for it as well as ...
2
votes
1answer
76 views

Embed xml into dll

For my UI system, which is similar to WPF but written cross plattform with OpenGL, i need to embed the xml files into the DLL which are used to layout the user controls. The problem is: By default ...
2
votes
0answers
66 views

Monodevelop - when does it save csproj files?

When MonoDevelop crashes (somewhat often unfortunately) I usually have to re-do changes to the project that seem to not be written to disk. As a result my work flow has become - change project, ...
1
vote
1answer
113 views

Can't open MvvmCross sln in monodevelop

I'm trying to build a x-platform mobile app using mvmmx. I'm starting from md and not vs, as my primary target is iOS. I'm running into a few issues: I can't any of the MvvmX sln file in md. md ...
2
votes
0answers
77 views

What is the correct way to organize ViewControllers in a Monotouch project in MonoDevelop?

Working in MonoDevelop on an iOS app and I have the need to start organizing some of my files into subdirectories. I have started off by creating a new ViewControllers folder in the main directory ...
0
votes
0answers
170 views

Download task in background + Progressbar (monotouch)

in my monotouch app I would like to implement the option to download some bigger files. Off course I need to do this download in a separate thread (instead of UI thread). I also want to update a ...
1
vote
1answer
85 views

how to disable “profile” in monodevelop

In monodevelop try menu > project > profile mono..., before try it, every works fine , but now is imposible for me debug in iphone debug simulator. always same error In release simulator work fine ...
1
vote
1answer
162 views

app works in simulator but gives 'could not resolve error' in deploy

So my iPhone MonoTouch app throws the following error when i try to build for deployment to the physical device. Error MT2002: Could not resolve: System.Configuration, Version=4.0.0.0, ...
2
votes
1answer
218 views

Deploying to App Store using MonoTouch

I have read the documentation to allow deployment of an iOS App to the AppStore using MonoTouch. Here is a link that explains the same: ...
0
votes
1answer
110 views

Monotouch combine TabBar and Toolbar

Hy community, I have a question: I want to have a toolbar which is at the top of all three tabviews. If I add the toolbar in the interface builder to the splitviewcontroller, the toolbar isn't showed. ...
3
votes
1answer
308 views

MonoDevelop Intellisense not showing all items in PCL

I'm currently building a MonoTouch app, and want to share as much code as possible between it and any other future platforms. I figured the best way would be to use a PCL for the common code. Problem ...
1
vote
1answer
83 views

Can I reference .NET 4.0.3 runtime in MonoDevelop on a Mac?

In my question about using .NET 4.0.3 in a Portable Class Library I spoke a little too soon: I got the PCL working on my Windows machine, but now I can't get it working on the Mac. If the library is ...
1
vote
1answer
145 views

View plist raw xml in monodevelop

I really need to see the xml of the plist in monodevelop or in xcode. Currently the plist file doesn't appear in xcode only in monodevelop and i cant find a way to edit the xml directly. As a ...
0
votes
1answer
81 views

Programmatically Populate List with All Songs?

I'm aware of the MPMediaPickerController, but I am under the impression that it is only for a user to manually select songs? I would like to populate a list with all of the songs in the library ...
1
vote
1answer
179 views

MonoDevelop Debugger Crashing with no error message, using Dijkstra's algorithm and 2D array

I'm making an iOS game in Monotouch with C# and MonoDevelop. I'm having a very strange crash. Background Information: Making a 2D war game. I've implemented Dijkstra's algorithm to calculate the ...
1
vote
2answers
64 views

Is it possible to use Localytics with Mono for iOS?

I am new to iPhone developement in general. I am currently using Monotouch (MonoDevelop as the IDE). Is it possible to use Localytics with this for app tracking purposes? I have seen that there is ...

1 2 3 4 5 10