apple

Add Network Service (VPN) Using Terminal

Basically my problem is that I need to write a script that automatically creates a VPN service in Mac OS X Snow Leopard that can be used on multiple machines to speed up the process rather than going through system preferences every single time. It is specifically needed to run on 10.6.* because the VPN needs to use the Cisco IPSec proto...

Get hash value using bash

Hi, I need to get the PID value out of a variable(containing hash data) using BASH. eval errors because of the array inside of it. This script is on an iPhone. eval "$(launchctl list com.3radicateRD)" eval: line 10: syntax error near unexpected token `(' eval: line 10: ` "ProgramArguments" = (' ---------------------------------------...

Can I use Ubuntu to create a Apple iPod/iPhone/iPad app?

I was wondering if I could make some money by creating an iDevice app and posting it on the Rock your Phone Store. Which language should I use and are there exceptions to it. ...

What is the _acp-sync._tcp bonjour service for?

When I browse my home network with a bonjour browser, I see this _acp-sync._tcp bonjour service beeing advertised by all my AirPort base stations. Can anyone give me any insights on what this is for? Best, Kolja ...

How Easy is it To Get a Single Use Utility Published on the App Store?

Every once and awhile, I think of something I would want to use my iPhone for, but when i check the App store, there is no app for it yet. The things I think of are usually somewhat specific to me. I usually get pretty close to buying a book and learning how to develop for iPhone, but I always remember the stories of how difficult it is ...

UISplitViewController strange behavior

Hi i have a splitViewController mapViewController = [[MapViewController alloc] initWithManagedObjectContext:managedObjectContext startingRegion:startingRegion]; distanceViewController = [[DistanceTableViewController alloc] initWithManagedObjectContext:managedObjectContext]; distanceViewController.mapViewController = mapViewCont...

How to fix sleep on objective C sdk 4.0?

I have a warning on objective c for iphone it says "implicit declaration of function 'sleep'" All I have is a sleep(1); for the splash in the applicationDidFinishLaunching I didn't have this problem in prior versions of the sdk I know is just a warning, but I had problems before with apple for not having 100% success Thanks for every...

Cocoa Application Bootstrap Questions

I am an experienced developer, new to Mac development, so I Read a nice objective C guide Read the Apple memory management guide Went through the Apple intro to Cocoa Checked out the NSApplication and NSApplicationDelegate Refs Messed around a bit There are still lots of gaps, and I'm having a hard time finding good readables. Some ...

Recommended setup to develop games (2D/3D) on a Mac?

What tools, SDKs, applications etc are recommended to develop 2D/3D games on a Mac (and which will target Mac)? ...

sproutcore backend

hi does sproutcore need backend? is it reliable as Java for webapps? or does it use only for client-side programming? what about apple's projects as iworks.com and mobileme.com? do they programmed by sproutcore and javascript only or use also something else for backend as Java (webobjects)? ...

Widget application in iPhone?

I like to develop a widget kind of application for iPhone. Will app store accept the application? It going to be a free app ...

How can I use the Apple SDK on the PC?

I have a need to build apps for an iPad but I do not have a Mac, is it possible to run the Apple SDK on a PC, through an emulator or some other method? ...

apple web backend technology

hi as you know apple use javascript/sproutcore for its products as mobileme.com and iwork.com. what did they use as backend? javascript server-side? thanks ...

Can a Safari Extension react on the creation of a new tab?

I am currently writing my first extension for Safari 5. I can't find a reference on what events an extension can react. I want my extension to react on these events: when a new tab is created. when a new browser windows is created. when the URL inside a tab changes. Is this possible? ...

What's difference between Apple developers account

If I login with university account and download xcode, installed it. After I got another enterprise account, do I have to login and download again? Besides that, what difference when using those 2 accounts? Thanks. ...

Video chat from iPhone to PC

Apple has just posted a technical Q&A on "how to capture video frames from the camera as images using AV Foundation." I'm very interested in this as I want to create an application that allows me to do a video chat from an iPhone to a PC. However, sending images to PC is obviously not a workable solution. So, can anyone please suggest a ...

Checking Internet connection with Reachability 2.2

We are trying to display an alert view when there is no connection and we are using the reachability 2.2 classes from apple. The problem we are running into is that at the start of the program we are always getting an alert view that there is no internet connection but we are connected to the internet. Is there a correct way to check for...

Putting my iPhone app on my phone to test?

Hi All, How do I take my working iPhone app and put it on my phone to test with? I dont seem to see how and my googleing doesn't turn up what I think I am looking for... I am a registered developer and have paid my $99 already. Would anyone know? ...

what we can use insted of UIKeyboardBoundsUserInfoKey in iphone os 4.0

Hi all i am using this code in my application. CGRect keyboardBounds = [(NSValue *)[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] CGRectValue]; but UIKeyboardBoundsUserInfoKey is deprecated in iOS 4.0 i am using UIKeyboardFrameEndUserInfoKey and UIKeyboardFrameBeginUserInfoKey in iOS 4.0 but these are giving diffe...

Update UITableView using threads

Hi guys, I am creating a dictionary application for iPhone that gives result while the users are typing. I use threads (NSThread) to update the UITableView so that the main thread is not blocked. However, a crash happens when the UITableView asks the data source for the number of rows ( tableView:numberOfRowsInSection:) and I return, s...