apple

retrieve Apple ID via Client script (ex: Javascript) or anykind of platform dependent unique ID of client

Title displays the question. I'm making a iphone webApp, and before contacting my server (call api) i need to know a few things: platform OS program version ..etc Wich i have. But i also need the Client's Apple ID before posting Any ideas? THANK YOU ...

Crash in OS X Core Data Utility Tutorial

I'm trying to follow Apple's Core Data utility Tutorial. It was all going nicely, until... The tutorial uses a custom sub-class of NSManagedObject, called 'Run'. Run.h looks like this: #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @interface Run : NSManagedObject { NSInteger processID; } @property (retain) NSDat...

how to make app compatible for both java 1.5 and 1.6 ?

We have a java desktop application. App was working fine before updates had been taken and now it isn't working with java 1.6 on mac OS x leopard. We replaced our JavaApplicationStub of app and it's working again from location. /System/Library/Frameworks/JavaVM.framework/Versions/Current/Resources/MacOS/JavaApplicationStub We ar...

Apple Mac Software Development

I'm planning on developing an Apple Mac application which will collect hardware information from the host Mac and also installed software info. The hardware and software info will be collected in an encrypted XML file and then posted back to a website. The application should run as a "service" or background process on the Mac and can b...

Looking for the Mach-O loader source code in the Darwin sources.

As I understand it, Mach-O should be part of the Darwin open source packages. Could someone please help me locate the loader? I've no idea where it is and where to download that code from. Any help would be greatly appreciated! ...

How can i put UITextfiled inputs into UITableView every time i add an input in the UITextField?

How can i show the input text from UITextFiled into UITableView and the UITable Updated automatically once the UITextFiled get field by another user? like, one the user get online he should be shown in the UITableView so the other users be able to see who's online i did that already for the room list but!!! this is the the welcome...

Image Cropper similiar to Pastebot or Photoshop mobile for iPhone

How do you create a slightly dimmed overlay with a moveable transparent rectangle to represent the cropping area? It is basically cutting out a rectangle from the dimmed area. ...

What constitutes a private API in an iPhone app?

I'm fairly new to Objective-C and am confused on what falls under the unbrella of a "private API" that could cause Apple to reject my app. Does this include adding methods to existing classes? For example, I found some code on stackoverflow to recolor the tab bar icons for UITabBars with this extension to the UITabBarItem class. Is this ...

Changing resource file in new version of an app

Hi, I'm working on an update for an already existing iphone app. The existing version contains a .sql database file which is used in the app. I would like to use a new version of this file in the update of the app. On the first startup of the existing app the .sql file is placed in the caches directory of the users iphone. From what I c...

Application to develop & test asp.net on a mac

I'm starting to learning some asp.net so I'm looking for an application to develop asp.net using a mac. I know dreamweaver can be used to write asp.net but I don't have any application to run a test server. Wondering what my options are regarding developing and testing (not on a live server) using a mac. thanks! ...

What kinds of questions are Technical Support Incidents for?

Last year I received two "Technical Support Incidents" in the iPhone developer program, but when I went to renew I found that I would lose them. I have another two for this year, but I'm not really sure about the kind of problems that can be solved by using them. What kinds of questions are the best use of these Technical Support Incid...

Stuck in itunesconnect submission version number limbo...

I did a very very stupid thing. I was uploading an update to my app on itunesconnect, but typed in the wrong version number. The version number I typed (1.02) was smaller than the one that's already up there (1.1). Apple accepted the submission, and planned to upload binary later. Went to upload the binary (also 1.02), but only AFTER...

CoreData RelationShips

Working environment: OS X 10.6.3, Xcode 3.2.1 Hi! I'm working on a project called Rent-a-Flick. The project has two entities: Movie and Client. Between them there's a many-to-many relationship. I have 2 tables: one with the movies and one with the clients. Their content is bound to the proper array controllers(for movie and client). I...

[obj-c] autorelease problem

Why the NSArray allocated with arrayWithObjects dealloc automatically if already used by BObject object?? in teory NSArray must remain allocated all the BObject life time... [[BObject alloc] initObjectName:@"oneObject" states: [NSArray arrayWithObjects: [[State alloc] initStateName:@"stand_front" singleImg:[NSArray arrayWithObjec...

reading rss feeds in applescript

how do I read RSS feeds in apple script? I want it to pick and speakout latest news along with reading weather info ...

iPhone/iPad C++ Example

Does anyone know where or how to obtain a C++ example to create iPhone apps? What I am looking for is just using C++ (no objective-C or just the bare essential objective-C) and no interface builder, source only. Can ayone help me locate such a beast? ...

Height of the apple menubar

Hello, My question is in fact not bound to any programming language, i was just wondering what the height of the apple menubar (the one always on top) is? (My screen size is 1200 x 800) i was wondering what it would be excluding the menubar. (I run 10.5.8 => Leopard.) Thanks Samuel Edit: Speaking about pixels of course ...

How to write little plugin in xcode for Apple Motion?

Hey. I want to write a little plugin in xcode which reads lights position in opened Apple Motion graphic scene. Anybody can tell me where i should start? What project in xcode, what library i need and what should i do to read sth from Apple Motion? Thx! ...

Will apple allow an odds application?

Hi, This is a hypothetical question. If one would develop an iPhone/iPad (Universal) odds application, whould apple allow this to the appstore? This application would not let you bet on odds directly, but would collect odds from different odds sites and show them to the user. The user can launch these sites and make their bets there (no...

IPhone: Controllers, Delagates, DataSources, etc all in one class?

Hi All, I am learning iPhone programming. I am starting with a simple example of displaying recently used documents in a UITableView. What I am confused about is why do I need to have several classes and why cant I just use one? Example, My class is called RecentFileList. I need to implement controller, delegate and datasource as wel...