Tagged Questions
-6
votes
2answers
190 views
In which language is it better to program iPhone apps? [closed]
I'm looking forward to start programming iPhone apps, I'm very good in C# & C.
I realized that the default programming language for iPhone is Objective-C, which I know nothing about.
Also I found ...
6
votes
2answers
308 views
Is it possible to add C references to an objective c binding?
There are some C style functions in an Objective C library I'm binding to that I need access to in my application. Is it possible to add these into the bindings in any way so I can access them in my ...
3
votes
2answers
143 views
Binding to 3rd-party library in Monotouch - mapping uint8_t * and uint8_t **
I am attempting to bind to a 3rd-party barcode scanning library using monotouch - everything is working well so far except the following method, as defined in the library header file:
/**
* Main ...
0
votes
1answer
190 views
MarshalDirectiveException at (wrapper managed-to-native)
I found this bug error while building an application for iPhone using c#.
This application has a plugin that passes System.Object instance to c.I got this and Im not sure what part is missing!
Here ...
0
votes
1answer
182 views
Right aligned EntryElement
Any sample on making EntryElement align to the right?
I can't figure out how to inherit/override the EntryElement.
Thanks,
Mojo
0
votes
1answer
255 views
C/C++ functions returning NaN in MonoTouch when p/invoked
I have two source files:
File.h:
class Numbers
{
public:
int Get10();
int Get192();
float GetFloat();
};
File.cpp:
int Numbers::Get10()
{
return 10;
}
int Numbers::Get192()
{
...
3
votes
3answers
460 views
Using P/invoke to improve performance, feasible or just wishful thinking?
This is a question I probably should have asked sooner but didn't in my rush to have fun with p/invoke type stuff in MonoTouch.
Basically I have a problem with performance pertaining to a very large ...
0
votes
2answers
2k views
How to force exit iOS application using Monotouch?
How to force exit iOS application using Monotouch?When network not available I want to exit application. Thanks for your advice.