Tagged Questions

157
votes
16answers
14k views

How to decide between MonoTouch and Objective-C?

After sitting through a session today on Mono at a local .Net event, the use of MonoTouch was 'touched' upon as an alternative for iPhone development. Being very comfortable in C# and .Net, it seems ...
3
votes
4answers
325 views

Developing a client-server iphone app

If i want to develop an iPhone app with a client-server design (iPhone devices as the clients and a c# server),two questions: Is it possible to use my own laptop to run the server on? and if not ...
2
votes
3answers
1k views

TCP/IP vs Web Services for iPhone chat app

Hey guys, I was wondering what your opinions would be on how to create a NATIVE chat app for the iPhone. So far we have been exploring a few options: 1) Creating a web service using php or other web ...
0
votes
2answers
95 views

how to build web service that get post method

I am regular to send from my iphone to a web service a URL with all the data and i want to know if there is any way to get this stuff by sending this data with post method.
0
votes
6answers
959 views

Cross Platform Mobile App

Question 1: Day 1 What is the most practical, and price effective way to create a cross platform mobile app? I know it is difficult, I know it takes time, effort, money and resources. I am not ...
9
votes
5answers
4k views

MonoTouch & C# VS Objective C for iphone app

Greeting, I'm a C# programmer guy. I'm planning to start developing app for iphone but I'm not sure if I should use C# under MonoTouch or just use the native language for iphone OS Objective C. Is ...
26
votes
5answers
1k views

How big of a jump will it be to go from C# to Objective C

How hard will it be to transfer from my existing expertise in C# to building apps for the iPad/iPhone in Objective C?
12
votes
19answers
4k views

Create a cross platform Windows, Mac OS X application

I would like to build an application that runs on both Windows and Mac OS X. I would also like it to leverage the best of what the platform it runs on has to offer with regards to Frameworks, API's ...
4
votes
5answers
6k views

String encryption in C# and Objective c

I am building a iPhone app which uses c# web services. My c# web services takes user details and validates against my DB and returns xml files. So Now the issue is how to encrypt user ...
7
votes
0answers
470 views

Switching back to Objective-C from MonoTouch [closed]

I know I'm not the first and probably many people ask similar questions here regularly and this question probably another candidate for closing votes. I'm not trying to start another round of endless ...
2
votes
2answers
610 views

Delegates in objective c

First I should tell you that ive little knowledge of Objective C or C#.So when one of my collegues asked me whether there is anything like delegates in Objective C,I wondered if such a concept existed ...
10
votes
4answers
4k views

What is the Objective-C equivalent of a public get/protected set property in C#

Is there any way to create a property like this C# property in Objective-C? public int prop { get; protected set;} Essentially, I want to make it possible to get the value from outside the class, ...
3
votes
7answers
723 views

Help with understanding C# code and porting to Objective-C

Ok, I have this prototype that was written by someone else in C# and I'm trying to put it into Objective-C. Now, I haven't had any formal experience with C# yet, so I don't know everything about it ...
0
votes
1answer
322 views

WebSockets and objective-C [closed]

Possible Duplicates: WebSockets vs TCP/IP vs JavaScript/AJAX for iPhone chat How to incorporate WebSockets into a Cocoa application Hey guys, our team is planning on developing a native ...
0
votes
1answer
281 views

Intels Open Source uPNP SDK Has absolutely 0 documentation, why?

basically, here is the address... http://opentools.homeip.net/dev-tools-for-upnp they are the recommended dll's to use for upnp as they implement the standards better then microsofts upnp.dll - but ...
26
votes
6answers
1k views

.Net guy needs some info on Cocoa

I want to do a little development in OSX and the iPhone. I've been a .Net/C# developer for years. I was wondering if there was anybody that had experience in both platforms that could tell me how they ...
15
votes
2answers
799 views

Mixing C# with Objective-C

I would like to use larger body of C# code as a library for Objective-C (Cocoa) application. I discovered MonoMac project which wraps Cocoa code, but I would rather have standard Cocoa application ...
5
votes
7answers
2k views

iPhone programming - impressions, opinions?

I've been programming in C,C++,C# and a few other languages for many years, mainly for Windows and Linux but also embedded platforms. Recently started to do some iPhone programming as a side project ...
0
votes
3answers
256 views

Proper Objective-C Helper “Wannabe” Private methods?

While I hate to beat a horse to death on this subject (I've read through various articles about this), but would just like to get more opinions on this matter before I create my "own convention" to ...
4
votes
2answers
594 views

Objective C <-> Mono bridge

I'm considering writing a cross-platform desktop app, initially for Mac/Windows, but eventually for Linux as well. Currently, I plan to structure it like so: Mac UI using Cocoa/Objective ...
3
votes
1answer
639 views

Binding ObjectiveC Class to C# problem

Binding ObjectiveC Class to C# problem The monotouch project describes how to bind Objective-C Types for use with MonoTouch. We failed to do this for the AdMob library (see also the ...
3
votes
4answers
195 views

Objective-C for IPhone for Java Developers: Books, Sites, Videos?

[Yes I have seen this question but I do not know C nor C++, otherwise the O'Reilly book would be great. Though some of the answers to the question are helpful] I do not know C nor C++. I know C#, but ...
2
votes
2answers
151 views

Key things to know when learning Objective C?

I would like to learn Objective C, proficiently. I have a decade of extensive experience and expertise in C# and almost all of the .NET framework. I am also a little familiar with low level concepts. ...
0
votes
2answers
779 views

How to Post values from iPhone using ASIHttp?

I want to send some values from my iPhone application to an ASp.Net web page in server. I am using asihttp for that. Its processing the request and invoking the page on server. But the none of the ...
-3
votes
2answers
72 views

How to achieve this funcationality in Windows Phone

How i can port this set of code in wp7 -(NSString *) timeSincePosted:(NSString *)ad_date { if (!ad_date || ([ad_date compare:@""] == NSOrderedSame) || ([ad_date rangeOfString:@"-"].location == ...
2
votes
2answers
203 views

Monobjc and Mac UI for Windows Application

I've got an application which was written in C# and is running on Windows and Linux using Mono. Now we need a native user interface for the Mac. Is there a way of doing this using Monobjc? Did anyone ...
1
vote
5answers
131 views

Need advices considering coding with MONO-TOUCH

I would like to know, in order to use MONO TOUCH to develop app on iOS, if it is better to learn : Objective-C / Cocoa Touch C# .NET I ask for that because my boss wants to send me in C#.NET ...
1
vote
1answer
2k views

Upload Image From iPhone to WCF Service

I'm trying to build an iPhone app and c# WCF Service to upload an image to a SQL Service database. I've got my app breaking an image down to NSData and posting off to a WCF Service using the ...
1
vote
8answers
497 views

Which is easier to learn coming from a C# background: Objective C or Java?

I've used C# quite a lot, it was my main programming language during University and I wondered which of the two languages for developing for Android or iPhone are easiest to learn bearing that in ...
0
votes
2answers
629 views

Who uses AdMob in a MonoTouch iPhone app?

Who uses AdMob in a MonoTouch iPhone app? The current sdk we got for admob is admob_iphone_sdk_20100908.tar.gz It has two lib files, but only the NoThumb file is usefull due to the well known bug in ...
0
votes
3answers
528 views

Do you really need to know C/C# to code in Objective-C (iPhone)?

Do you really need to? I had no idea what C/C# was when I first started learning Objective-C, and I still don't feel comfortable with C/C#, but I am almost finished on my second iPhone App allready, ...
7
votes
1answer
241 views

Bulk translation of C# to Objective C

Our department has inherited two new code bases. One is in C#, the other is in Objective C. The first has a bunch of functionality that we need in the second as well. I realize that there isn't ...
4
votes
2answers
88 views

C# Set Method equivalent in Objective-C

I am porting a small function from C# to Objective-C (for the iPhone), and I am running into a snag with a C# method. I'm not sure what the following C# lines would equate to in Objective C. ...
3
votes
2answers
828 views

A comparison between the cocoa and .net frameworks

the purpose of this question is to make it easier for developers trying to migrate between the two. If you want to learn one technology, you'll want to know how its different from those that you know. ...
2
votes
2answers
74 views

Greystripe ads with MonoTouch?

Has anybody integrated greystripe ads into their app built with MonoTouch? If so whats the best way to go about it? Greystripe provides and SDK and guide, but it deals with objective-c and editing ...
2
votes
3answers
109 views

Map C# class into Objective-C one?

Im a C# developer whom is new to Objective C and this migration has not been easy due to the difference between the two languages. What im try do is to create a class that has properties similar to ...
2
votes
6answers
566 views

c# iPhone development vs objective c iPhone development

Which language is better for iPhone application development? Normally objective c using for iPhone application development. But monotouch supports iPhone development with c#. Before that I didn't ...
2
votes
2answers
192 views

Question About Classic MVC

In classic MVC the model notifies the view about changes made on it. In C# this means I have to subclass the View I'm interested in and in the subclassed class register to the model's event. For ...
1
vote
2answers
137 views

MonoTouch to objective C

In .NET if you compile something it is possible to decompile it and see the source code using programs such as Reflector. I know the basics of Objective C and will rather try to use Objective C than ...
1
vote
1answer
90 views

Exposing an Obj-C const NSString via a MonoTouch binding

I've got a working MonoTouch binding for ZBar up and running, but am having troubles exposing a constant NSString that the Obj-C library defines for use as a Key in an NSDictionary: inside ...
1
vote
1answer
268 views

Monotouch Tell Difference Between iPad 3G and WiFi (Check for GPS)

I currently have some objective C code which I use to identify the difference between an iPad 3G and an iPad WiFi. Bizarrely both models come under the device code iPad1,1 (iPad 2s have three ...
1
vote
1answer
82 views

MonoTouch - access to Obj-C Constants

Many times I'll read Obj-C code and need the value to one of their constants present in one of the Obj-C header files. For notifications, I've been able to find them in MonoTouch such as ...
1
vote
2answers
229 views

Return array of integers from cross-platform DLL

I created a cross-platform DLL in C++ that compiles on both Windows and Mac OSX. On Windows, I have a C# app that calls the DLL using P/Invoke and on Mac OSX, an objective C app calls the DLL. I have ...
1
vote
0answers
132 views

What is the difference between an ObjC delegate and a C# delegate? [closed]

Possible Duplicate: Delegates in objective c ObjC and C# appear to attribute different meanings to the term 'delegate' Could somebody clarify? What is the difference between an ObjC ...
1
vote
2answers
247 views

Most Feature Complete Programming Languages? [closed]

My personal programming background is mainly in Java, with a little bit of Ruby, a tiny bit of Scheme, and most recently, due to some iOS development, Objective-C. In my move from Java to Objective-C ...
1
vote
1answer
258 views

How accurate is distanceFromLocation on Iphone vs calculating it yourself in cartesian cordinates?

In the Iphone SDK the distanceFromLocation: says it doesn't use altitude at all. If I'm writing an app to track how far I walk/cycle/ect (yes I know there are a number that do this already), I'm ...
1
vote
1answer
226 views

Monotouch (C#) equivalent to rangeOfCharacterFromSet

I'm trying to port some Objective-C code into C# - Code can be found here and it uses NSString's :rangeOfCharacterFromSet more than once. As far as I understand, :rangeOfCharacterFromSet returns a ...
1
vote
3answers
188 views

.Net vs Cocoa String Formats

I can reproduce the following C#/.NET: //A String.Format("There are {0} cats in my {1} and no {2}", 2, "house", "dogs"); in Objective-C/Cocoa: //B [NSString stringWithFormat:@"There are %d cats in ...
0
votes
0answers
32 views

NSEvent.KeyDown is only working on the Search Box (in Mac OS X)

I am using the code below to simulate a character. e.g. "a". but this is only working on the Search Box and my own application. on other application it beeps. Please note that this is the C# code but ...
0
votes
0answers
64 views

Can anyone tell me if I'm going to get the gist of Objective C and C++ by taking C#? [closed]

Can anyone tell me if I'm going to get the gist of Objective C and C++ by taking C#? It's the only one my school has right now. Thanks

1 2