IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Thursday, January 31, 2013

Access Same Stores?

If copies of the same model reside in different applications, will they use the same default store location when used by the same user?


View the original article here

Contexts Limit

So access to a common central store created by the same model is ultimately limited by a single server's capacity to process the requests?


View the original article here

Max application memory Limit in iPad 4th?

Is there material to talk about it? what is max memory limit for application running on iPad 4th?


View the original article here

Re: Access Same Stores?

CoreData NSManagedObjectModel


View the original article here

iPads being sent back---no Firefox capability!

Why has Apple blocked Mozilla developers from placing the most popular browser in the world, Firefox, app on iPad?

 

Common sense would seem to indicate that more iPads would be sold if they had the capability of running the most popular browsers.

 

 

Thanks!

 

lenms


View the original article here

how i can build a application

Re: Access Same Stores?

CoreData NSManagedObjectModel


View the original article here

How to ipdate the application from the app atore

Ahm ser, man i have 1 question i hope you help me how to update the application from app store i have apple id and ok if seach from app store but if i update the application from app store the apple id is change and if i enter the password, say wrong password or id, please help me my unit is iphone 5


View the original article here

Re: What should I do if I find my submitted App crashes and it's in "Waiting for Review" phase?

Reject it yourself, fix the bug, do more testing, and resubmit.


View the original article here

sendSynchronousRequest with self signed certificate

Hi

 

Due to the application design I cannot use the – initWithRequest:delegate: method of NSURLConnection class for my https requests to a server. Hence I have to make synchronous calls using sendSynchronousRequest:returningResponse:error.

 

When I was using initWithRequest , it was taking a class delegate of NSURLConnectionDelegate class hence I handled the self signed certificate problem by the following code:-

 

- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {

 

    return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];

}

 

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {

   

    [challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];

   

    [challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];

}

 

 

Now the problem is that sendSynchronousRequest does not take any delegates to be called on. So now how do I handle non trusted certificate problem using synchronous request.

 

 

I searched but so far can't find any solution.


View the original article here

Is Emoji in app legal?

I'm currently developing an app for iPhone. But would I run into any trouble (e.g. copyright or legal) if I use one Emoji as the icon for my app, and also used several within the app? (I plan to release it later. Not sure if it'll be a free app or not yet).


View the original article here

Is Emoji in app legal?

I'm currently developing an app for iPhone. But would I run into any trouble (e.g. copyright or legal) if I use one Emoji as the icon for my app, and also used several within the app? (I plan to release it later. Not sure if it'll be a free app or not yet).


View the original article here

Contexts Limit

So access to a common central store created by the same model is ultimately limited by a single server's capacity to process the requests?


View the original article here

Re: iPads being sent back---no Firefox capability!

Guys, sorry about my rude subject line!!!

 

Actually, We love our iPad2's(what's not to love!), and have no intention of sending them back!

 

My post seems to have been more of a rant, or worse, a WHINE!!!  LOL

 

 

Thanks for any constructive advice.

 

lenms


View the original article here

Max application memory Limit in iPad 4th?

Is there material to talk about it? what is max memory limit for application running on iPad 4th?


View the original article here

Re: What Is The Cause Of My Xcode Errors, What Is The Cause Of My Xcode Errors

Why are you defining the ViewController interface in the .m file?


View the original article here

When is 6.1 Release?

When is the official 6.1 Release?


View the original article here

Re: Contexts Limit

Though servers could be 'cascaded' to divide the traffic, and connect more users to a central store, but would have to prioritize the need for the groups to have access to the most accurately current core data? With spurious users sharing data files.


View the original article here

Re: Is Emoji in app legal?

You can use any font within your application. You cannot make a copy of any OS resources and use them in your application. You don't have the "right" to make that "copy". Build your own icon with Logoist.


View the original article here

Re: how i can build a application

How to ipdate the application from the app atore

Ahm ser, man i have 1 question i hope you help me how to update the application from app store i have apple id and ok if seach from app store but if i update the application from app store the apple id is change and if i enter the password, say wrong password or id, please help me my unit is iphone 5


View the original article here

Re: When is 6.1 Release?

What is 'NDA'         


View the original article here

What should I do if I find my submitted App crashes and it's in "Waiting for Review" phase?

Hello All,

I submitted my App and I recently found it crashes at a certain point.  What should I do?

I was thinking about "Rejecting the Binary" on iTunes Connect, then resubmitting a new binary.

 

Your thoughts.

 

John


View the original article here

how i can build a application

Re: When is 6.1 Release?

What is 'NDA'         


View the original article here

What is the proper way to compile c++ code from the terminal?

I'm using:

 

g++ char.gpp

 

And I get:

 

ld: library not found for -lcrt1.10.6.o

collect2: ld returned 1 exit status

 

So I tried setting LIBRARY_PATH to a directory that contains crt1.10.6.o, but then I get:

 

ld: warning: in char.gpp, file was built for unsupported file format which is not the architecture being linked (x86_64)

Undefined symbols:

  "_main", referenced from:

      start in crt1.10.6.o

ld: symbol(s) not found

collect2: ld returned 1 exit status

 

So clearly I am not picking up the right library, or perhaps just not all the libs needed. Why is this so hard? I haven't seen problems like this with earlier versions of Xcode.

 

I'm using the latest version of Xcode on a MacBook Pro with Lion installed.

 

Thanks,

 

Kim


View the original article here

Safari error

Hi! I have an iPhone 3 GS and I try everyday to download iOS 5 6 for more applications.

But my safari can't download my file.

I don't know what can I do.

Please help me.


View the original article here

sendSynchronousRequest with self signed certificate

Hi

 

Due to the application design I cannot use the – initWithRequest:delegate: method of NSURLConnection class for my https requests to a server. Hence I have to make synchronous calls using sendSynchronousRequest:returningResponse:error.

 

When I was using initWithRequest , it was taking a class delegate of NSURLConnectionDelegate class hence I handled the self signed certificate problem by the following code:-

 

- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {

 

    return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];

}

 

- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {

   

    [challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];

   

    [challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];

}

 

 

Now the problem is that sendSynchronousRequest does not take any delegates to be called on. So now how do I handle non trusted certificate problem using synchronous request.

 

 

I searched but so far can't find any solution.


View the original article here

My C program won't build.

I put it in terminal, using gcc and then dropping the file in, and get no errors, but it doesn't create an executable file.


View the original article here

Problem updating Xcode to 4.6

I'm having a problem updating Xcode to the latest version. It seems to download OK from the App Store but when it starts to install it my iMac shuts down. I've tried this several times and the same thing happens every time. I see that in Finder there are two entries for Xcode, one being the App Store download. I saw a suggestion when someone was having problems with an earlier upgrade that you should try to see if the App Store would allow the new Xcode to be downloaded again but it only gives me the option of downloading the upgrade.

 

How can I sort this out?


View the original article here

Wednesday, January 30, 2013

geolocation doesn't work with iOS 6 web apps!

The javascript geolocation service doesn't work with iOS 6 web apps. We have a web app that works fine in iOS 5 and it works fine in iOS 6 in Safari. But in iOS 6 if you create a web app by adding clicking on the middle icon at the bottom of Safari and adding the app to your home screen it doesn't work anymore. The geolocation call simply hangs.

 

I created a really simple test problem. Simply go to http://stroll.nextbus.com/webkit/test.jsp in Safari to try it out. Then create a Home Screen icon for it and click on the icon and you can see that your position is never displayed. You can look at the html to understand this trivial application.

 

So how does one contact Apple to get them to investigate this issue?

 

And by the way, we have already gotten a huge number of complaints about this problem!

 

-- Mike


View the original article here

Does anyone know a way to be a developer using a windows os

I don't want to spend $1000 on a mac but I want to be a devoloper.  Any help?


View the original article here

Seeking a developer to the team for a large project

Need a capable developer in the team. Developing an application that will sync iphone-ipad using the protocol bluetooth message access profile (MAP), ipad will be notified that you have written messages, phone calls.Leave mail address to contact you.


View the original article here

Re: iPads being sent back---no Firefox capability!

What learning curve?

Safari for iOS is simple to use.

No manual required.


View the original article here

Reduce ipa size

Hello,

 

My application size is 35MB and .ipa file size 27MB.

How can I reduce ipa file size.

I have same project around 34 MB But its ipa file size only 8Mb.

I am not able to understand why this difference coming.

 

Please help.


View the original article here

please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)

please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)


View the original article here

How to change iCloud email address?

I entered a test address when setting up iCloud, but now cannot find out how to change this to the email I would like with the @me.com ending. Any ideas?


View the original article here

iOS 6.1 Beta 5 Error

I have the iPod touch 5th generation and it was running iOS 6.1 beta 4.  That beta expired, and so I went on to the Dev. Center to download Beta 5 to try and upgrade.  Once it downloaded, I extracted the ipsw from the .dmg and attemped to update from that .ipsw by using option+update in iTunes. It fails with "The Device is not eligible for the requested build" error.  Am I doing something wrong? Is anyone else having this problem?


View the original article here

Safari JavaScript Issues on iPad on with iOS6

I have an older HTML application that I am supporting, and admittedly, some of the JavaScript techniques are old, but I don't have the time to re-write the application at this time, it is 100,000's of lines of code.

 

A little background:

  • the code has been unchanged in several years
  • the code works on OSX (10.8.2) in Safari
  • the code works in Win 7 in Safari (5.1.7)

 

Unfortunately, several of my users have upgraded to iOS6 on the iPad and the code does not work in either Safari or Chrome.

 

The application will pop-up a window/tab based on the onChange event of a select element or from the onClick of a button.

 

The onClick from the button does not trigger the Safari "Allow Pop-up", but the onChange event does.

 

Once the pop-up window/tab has been opened (via one of the two methods above), the user makes a selection on screen and clicks a button which (ultimately) triggers a window.opener function.

 

I can not ever get the window.opener function to trigger when the pop-up window was triggered from the onChange (select element).

 

The window.opener will usually (maybe always, but I seem to remember it didn't once or twice) trigger if the pop-up window remains open, but the user manually puts focus on the "opener" window.

 

Again this works (and has worked) for many years on many different browser, unfortunatey, most of my users are now on iPads.

 

Any thoughts or tips would be greatly appreciated.

 

BTW first post, so please be kind.


View the original article here

Assigning user defined names to PersistentStores

So it seems if we want a PersistentStore to be handled like a file by the user, then it's best to keep the store in binary, and copy it as xml on request to a user-selected URL?


View the original article here

Re: Problems filling out an online webform with my Mac.

Solution for crash during installation of Xcode

At some point I could not install Xcode from appstore and everytime I tried, it just crashed the whole operating system and rebooted my macbook.

 

Last time I had to install it from dev site avoiding appstore, but finally, I found solution and wanted to share if somebody is having the same problem.

 

The reason was in CleanMyMac helper tool. Although, I used that CleanMyMac long long time ago and deleted from my applications, it still had this helper tool installed and running on my mac (spotted it from system logs). So what I did was - full uninstallation of CleanMyMac, as described here - http://macpaw.com/knowledgebase/cleanmymac/how_to_uninstall_cleanmymac

 

  1. Drag CleanMyMac icon from the Applications folder to Trash.
  2. Drag the CleanMymac folder located in the Application Support folder inside the Library folder in your home user folder to Trash.
  3. Drag the CleanMyMac folder located in the Application Support folder inside the Library folder on your system drive to Trash.
  4. Drag the com.macpaw.CleanMyMac.helperTool.plist, com.macpaw.CleanMyMac.volumeWatcher.plist and com.macpaw.CleanMyMac.trashSizeWatcher.plist files from the LaunchAgents folder located in the Library folder in your home user folder to Trash.
  5. Drag the com.macpaw.CleanMyMac.plist file from the Preferences folder located in the Library folder inside your user home folder to Trash.

View the original article here

on Sales Training, i have completed a quiz but its not showing on my points

I have completed a quiz but the points aren't showing on my info page, why is this?


View the original article here

Re: Cannot Understand Event Earsffdr Cocoa-Applescript

I've tried the applecation bundle thing, and my code looks like this:

 

 

    on myButtonHandler_(sender)

        set theFolder to POSIX path of (the path to current application's NSBundle's mainBundle()'s bundlePath())

        set theFile to theFolder & "/Contents/Resources/Dir.app"

        display dialog theFile

    end myButtonHandler

 

 

But now the error is:

«class ocid» id «data optr00000000E0B3660401000000» doesn’t understand the «event earsffdr» message. (error -1708)

 


In Applescript Editor, the code makes the error : NSBundle doesn’t understand the mainBundle message.

In addition, 'path to current application' doesen't work either, and it displays the original error.


View the original article here

register

Hi Dear

 

 

 

I have a problem in my iPhone is when you're talking my phone closed and then it fails and if I have occupied

I looked this message

 

This divice is not registered as part  of the iphone Developer Program

if you are a member of the program please register your device in the iPhone Developer Program Portal at

http//developer.apple.com/iphone/.

 

 

what can i do ? please

 

 

 

 

                                                                                        THANK YOU


View the original article here

libc abi.dylib: terminate called throwing an exception

I have a very basic xcode project which is throwing the following exception

 

0x2c24b 0x1dcf8 0x1efddf9 0x1f25f3f 0x1f2596f 0x1f48734 0x1f47f44 0x1f47e1b 0x197da 0x1b65c 0x264d 0x2575)

 

 

libc++abi.dylib: terminate called throwing an exception

 

Can anyone help as the reason give no clues that I can work with.

 

Thanks


View the original article here

Reduce ipa size

Hello,

 

My application size is 35MB and .ipa file size 27MB.

How can I reduce ipa file size.

I have same project around 34 MB But its ipa file size only 8Mb.

I am not able to understand why this difference coming.

 

Please help.


View the original article here

iPads being sent back---no Firefox capability!

Why has Apple blocked Mozilla developers from placing the most popular browser in the world, Firefox, app on iPad?

 

Common sense would seem to indicate that more iPads would be sold if they had the capability of running the most popular browsers.

 

 

Thanks!

 

lenms


View the original article here

FetchRequest Dictionary variables

Can you message an object to bring the value of a variable into the user info dictionary, or do you have to get the value for a Fetch Request user info dictionary variable from within the same model as the Fetch Request Template?


View the original article here

Re: You D&B information was not accepted...........

Unfortunately no :-(

These days, one of our customer is also experiencing similar problem.

Apple is saying that there is nothing wrong with their D&B integration, and D&B says, records are correct please ask to Apple solve the problem.


View the original article here

iOS 6.1 Beta 5 Error

I have the iPod touch 5th generation and it was running iOS 6.1 beta 4.  That beta expired, and so I went on to the Dev. Center to download Beta 5 to try and upgrade.  Once it downloaded, I extracted the ipsw from the .dmg and attemped to update from that .ipsw by using option+update in iTunes. It fails with "The Device is not eligible for the requested build" error.  Am I doing something wrong? Is anyone else having this problem?


View the original article here

WebKit framework not found

this isn't as simple as it may first sound from the title, but i have recently reinstalled xcode 4.2 and started on my usual process of starting an app in xcode only to find that when i try to add the webkit framework to my project by going to 'build phases' then 'link binaries with libraries' as ive done many times before only to find (or not find in this case) that the webkit.framework isn't listed there, i have tried reinstalling xcode again to no avail, i have done a quick search online hoping that someone else might have had a similar problem, if they have i haven't been able to find it, is there anywhere i can download the required files and add them manually, any thoughts or advice will be greatly appreciated.


View the original article here

Interface from CoreData Model

So I see in the tutorials that in the older version of xCode which is in the tutorial there was a 'CoreDataEntity' in the Interface Builder Object Library, which could instantly create an interface from the DataModel.

 

I can't find any such object in the object library. Does anyone know what is the xCode 4.0.2 equivalent?

 

Thank you for you time and help.


View the original article here

Where can I get the official list of countries FROM which developers could SELL PAID apps through the app store?

can anyone please link the web address please..........I want the official list of countries from where a developer could develop and sell paid apps through the apple app store.......thanks


View the original article here

Re: Assigning user defined names to PersistentStores

OK, so I think I get it. The whole point of CoreData is to maintain one and only one copy of the core data. So if I want to make files to share from that data that the application produces and uses, then I'll have to make a class, or use some other class, to read the objects out of the store and order them onto some other file. And then I'll also need the application to be able to take that file and read it back into NSManagedObjects, which is easy if the file is in xml format.


View the original article here

Problems filling out an online webform with my Mac.

Can anyone please help me?!

I have build an online webform on my website (with Concrete5) and at first it was working perfectly.

Then suddenly the top halve of my webpage  appeared not clickable anymore, including the navigationbar and searchfield. This while I haven't changed anything and earlier I experienced no such problems!

 

Now my friend tells me on a Windows computer there are no problems. Can anyone please tell me how I can fix this problem for Mac users?

I have tried it with Safari, Google Chroom and FireFox.

I hope someone can help me with this.

 

Thanks in advance!

Kind regards,

 

Anouk Beekman


View the original article here

Re: iPads being sent back---no Firefox capability!

What learning curve?

Safari for iOS is simple to use.

No manual required.


View the original article here

Re: iPads being sent back---no Firefox capability!

What learning curve?

Safari for iOS is simple to use.

No manual required.


View the original article here

Re: Seeking a developer to the team for a large project

Section 2.11 of the Apple Support Communities Terms of Use say:

 

Never reveal any personal information.

 

You are asking people to violate that. Please don't do that. I've asked the hosts for an official policy for job ads.


View the original article here

How to use CFSocket for client and server connection?

I am searching too much stuff online but it did not help me to write simple chatting

application for mac.It was all theory but not proper way for connection.

Suggest me how should i proceed.

Is there any book that is must to read?

All suggestions will be helpful.


View the original article here

register

Hi Dear

 

 

 

I have a problem in my iPhone is when you're talking my phone closed and then it fails and if I have occupied

I looked this message

 

This divice is not registered as part  of the iphone Developer Program

if you are a member of the program please register your device in the iPhone Developer Program Portal at

http//developer.apple.com/iphone/.

 

 

what can i do ? please

 

 

 

 

                                                                                        THANK YOU


View the original article here

What Is The Cause Of My Xcode Errors, What Is The Cause Of My Xcode Errors

I get 2 errors 1 is it at

@interface "ViewController" I get the error "Expected Identifer or (" and "Expected Identifier"

 

And At:

@implementation ViewController I get Error "Incomplete Implementation"


----------------------------------

Here is a copy of source code

---------------------------------


.m File

-----------

 

//

//  ViewController.m

//  SoundLoud

//

//  Created by on 29/01/13.

//  Copyright (c) 2013 SparxElectronics. All rights reserved.

//

 

#import "ViewController.h"

 

 

@interface "ViewController"

@end

 

@implementation ViewController

-(IBAction)playSound1 {

   

    NSSTRING *path = [[NSBundle mainBundle] pathForResource:(@"Bell" *) ofType:@"mp3"];

    AVAudioPlayer *TheAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL

    TheAudio.delegate=self;

    [TheAudio play];

}

 

-(IBAction)playSound2 {

                                  

NSSTRING *path = [[NSBundle mainBundle] pathForResource:(@"Boing" *) ofType:@"mp3"];

AVAudioPlayer *TheAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL

TheAudio.delegate=self;

[TheAudio play];

                          

                          

                          

-(IBAction)playSound3 {

                              

NSSTRING *path = [[NSBundle mainBundle] pathForResource:(@"Phone Dial" *) ofType:@"mp3"];

AVAudioPlayer *TheAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL

TheAudio.delegate=self;

[TheAudio play];

                          

 

                          

-(IBAction)playSound1 {

                              

NSSTRING *path = [[NSBundle mainBundle] pathForResource:(@"Servo" *) ofType:@"mp3"];

AVAudioPlayer *TheAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL

TheAudio.delegate=self;

[TheAudio play];

 

 

------------

.h File

------------

//

//  ViewController.h

//  SoundLoud

//

//  Created by on 29/01/13.

//  Copyright (c) 2013 SparxElectronics. All rights reserved.

//

 

#import

#import

 

 

 

@interface ViewController : UIViewController <AVAudioPlayerDelegate> {

   

   

}

-(IBAction)playSound1;

-(IBAction)playSound2;

-(IBAction)playSound3;

-(IBAction)playSound4;

 

 

 

@end


View the original article here

Re: Xcode: zoom (enlarge) the text in panels

The preferences suggestion is helpful for my immediate needs, but it would be very conventient to have the ability to have a hot key combo (ctrl?) + scroll to zoom like other applications, I am speaking of VS specifically. It seems like this would be the intuitive thing for anyone to do. I know it was my first instinct. Since I am a beginner, this suggestion is especially useful. It doesn't seem to be reserved for any other functionality, I don't see why this wouldbe hard to implement. It is probably worth it.

 

iMac

Processor  2.5 GHz Intel Core i5

Memory  4 GB 1333 MHz DDR3

Graphics  AMD Radeon HD 6750M 512 MB

Software  Mac OS X Lion 10.7.5 (11G63)

Xcode: Version 4.5.2 (4G2008a)


View the original article here

Re: Problems filling out an online webform with my Mac.

App per business? Rejection?

We are trying to build an iPhone app for restaurants and wondering if we would get rejected if we built the app for each restaurant? The app would simply ask users for their email address, then require them to rate the restaurant and then in the future send them coupons through the app. Each restaurant wants their own app. I am wondering if Apple will reject the apps since we could be building these apps for 1000+ businesses?

 

 

Anyone have experience with this sort of issue/ solution?

 

 

Jason


View the original article here

Cannot Understand Event Earsffdr Cocoa-Applescript

Hello Guys,

I'm trying to just write a little X-code 4 app to display it's own directory, using Cocoa-Applescript. I've created a window under MainMenu.xib, and linked it to my code in AppDelegate.applescript. My code looks something like this:

 

on myButtonHandler_(sender)

        set theFolder to POSIX path of (the path to current application)

        set theFile to theFolder & "/Contents/Resources/Dir.app"

        display dialog (the path to me)

        return void

    end myButtonHandler

 

 

The app builds perfectly, but when I click the button, it says:

 

 

[AppDelegate myButtonHandler:]: «script» doesn’t understand the «event earsffdr» message. (error -1708)

 

I have no idea what is happening there, so any help is appreciated!

 

P.S This code also works perfectly in Applescript Editor, but I want it to look better with a window, so this is really weird.


View the original article here

Re: How to change iCloud email address?

I really need to do this and am confused as to where you are actually making the change.  Can you help me out


View the original article here

Interface from CoreData Model

So I see in the tutorials that in the older version of xCode which is in the tutorial there was a 'CoreDataEntity' in the Interface Builder Object Library, which could instantly create an interface from the DataModel.

 

I can't find any such object in the object library. Does anyone know what is the xCode 4.0.2 equivalent?

 

Thank you for you time and help.


View the original article here

WebKit framework not found

this isn't as simple as it may first sound from the title, but i have recently reinstalled xcode 4.2 and started on my usual process of starting an app in xcode only to find that when i try to add the webkit framework to my project by going to 'build phases' then 'link binaries with libraries' as ive done many times before only to find (or not find in this case) that the webkit.framework isn't listed there, i have tried reinstalling xcode again to no avail, i have done a quick search online hoping that someone else might have had a similar problem, if they have i haven't been able to find it, is there anywhere i can download the required files and add them manually, any thoughts or advice will be greatly appreciated.


View the original article here

Re: How to change iCloud email address?

I really need to do this and am confused as to where you are actually making the change.  Can you help me out


View the original article here

on Sales Training, i have completed a quiz but its not showing on my points

I have completed a quiz but the points aren't showing on my info page, why is this?


View the original article here

iOS development on supervised device

Ok, I can't find this anywhere.

 

I am teaching a Mobile programming class at my community college.

 

We are part of iOS University as well as an Apple Developer

 

We also have two iPad carts of iPads.  Obviously we would like to develop on these iPads.

 

But when I connect one of them and open Xcode, I get a error "Operation prohibited on supervised devices"

 

I have not been able to find anything that relates directly to this isse.

 

My boss who is managing the devices says that he has "supervised" unchecked in Apple Configurator.  But I haven't had a chance to check it myself.

 

I'm desperate to figure this out, as the semester is passing on by and I have yet to do any real development with my students.

 

Thanks,

 

Tim Bivans


View the original article here

please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)

please tell me you can get access to the messages through the sdk? Using the protocol Bluetooth (MAP)


View the original article here

Re: How to change iCloud email address?

I really need to do this and am confused as to where you are actually making the change.  Can you help me out


View the original article here

I'm having trouble renaming a bundle

Hello everyone,
please understand I am -very- new to this as I'm the only one amoung everyone I know to do this first.

At a (small) class I took we were told the bundle identifiers was uniuqely meant for com.domainName.YourName.

 

Thing is- I put in my bundle identifier "com.techgirl52.myCompanyName", when it should have been "com.techgirl52.productIdentifier." I'm beyond infuriation with myself at this point. Normlly I would have started over, but I already deleted my intended product title priorly "The Event" on a failed attempt last night. Believe me when I tell you, I was on the webite for 2 hours, 1 1/2 spent trying to find out HOW to load a binary (I couldn't find Application Loader, assuming it was online). The other half was filling out cert information, no biggie. Today I found the Application Loader through spotlight search and am trying to rectify my erorr.

 

I finally gave up at 2AM, and realized my mistake for submitting the app. The bundle identifier is off by "com.techgirl52.TheEventIOS", as my form online states "com.techgirl52.myCompanyName".

 

Here's my problem: My first app is a donation to a local church event. It's for their outreach program and I'm at whit's end about this. I deleted the first attempt for "The Event" last night when I thought it crashed and bugged, so I made a new one and called it "The Event Official App". I want this app to be SUPER easy to find and I think I killed that chance in stone.

 

I'm not doing anything to it right now... I'm too nervous to try anything without asking.
Is there a way I can rename my bundle identifier, or reach out to Apple and ask them to allow me to use "The App" as the app title? I'm truly afraid about how to go back at this. I know this is a lesson learned hard.

 

Thank you very much,
Techgirl-52.


View the original article here

Re: Arduino with Xcode 4.5.2

Do you need Xcode? The Arduino compiler runs fine on the Mac. There are some people who try to use Xcode, but it seems like a whole lot of trouble to me.


View the original article here

Re: register

i have this prooblem too suddeny my phone opened a new screen and gave me this message

"

This divice is not registered as part  of the iphone Developer Program

if you are a member of the program please register your device in the iPhone Developer Program Portal at

http//developer.apple.com/iphone/ "

 

 

then when i tried to restore my iphone by itune it replys with an error message all the time ,what can i do in this situation  i just bought my iphone5 !


View the original article here

Re: You D&B information was not accepted...........

Unfortunately no :-(

These days, one of our customer is also experiencing similar problem.

Apple is saying that there is nothing wrong with their D&B integration, and D&B says, records are correct please ask to Apple solve the problem.


View the original article here

MVC binding

I'm going to note this thought/experience process since I'm still a beginner for that fact that my schedule allows for only such a piece-meal progress on my xCode work. Hopefully I can get some pointers in the process.

 

Coming back to xCode, it is very clear that the IBOutlets and IBActions are excellent and easy ways to bind view control objects to class variables.

 

It's also clear that drag-and-drop binding between CoreData attributes and something like a CDOutlet variable should also be available. Maybe it is?

 

Finally, if drag-and-drop binding were available between class instance variables when one is opened in the editor and the other in the assistant editor, that would be awesome and would complete the entire xCode package.

 

Maybe these tools are available on the newer versions?


View the original article here

You D&B information was not accepted...........

i has DUNS number... i want Developer Enterprise Program Enroll ...

why You D&B information was not accepted

 

 

plz.....


View the original article here

Monday, January 28, 2013

Amount debited during Apple ID creation

I am from India, an amount of 60rs has been debited while creating Apple ID, i want to know reason for that if possible.


View the original article here

will outlook under windows 7 acceptcontact from iphone or ipad containing multi numbers or labels?

i have on my iphone 4S and ipad2 contacts containing multi numbers / labels. I dont seem to be able to get all the numbers under the one contact when I sync with outlook. some of the numbers do not appear in outlook contacts. is this a problem with everyone? i also tried to create in outlook contacts exactly the same labels so that both are compatible but still with no success..........appreciate a response


View the original article here

iOS 6 beta 4 expired


So I got my iPhone 4S UDID registered for free, and was able to get iOS 6, then when the golden master came out I couldn't get it since I don't have a developer account, and iOS 6 beta 4 expired today and my phone is completely unuseable, and iTunes won't let me back it up. I know I can restore it, but I'd rather not lose all my texts, they're very important to me.



HELP ME OUT PLEASE.


View the original article here

Not able to restore to live iOS

This happend twice now.

 

Our devices were on iOS 6.1 Beta 4 and it expired. Now all devices are stuck on the initialization, asking for activation. The activation fails with every attempt.

 

When we try to update the device normally to live version, itunes shows error 'This device is not eligible for the requested build'.

 

Any idea on what is going wrong? How do we go around it?


View the original article here

Company Name vs. Seller Name vs. Copyright (app publishing with company account)

Hello,

 

the more I read on this topic (publishing apps on the iTunes Store), the more confused I am...

 

Can somebody please confirm my findings when publishing an app using a company account:

  • Company Name is set once when uploading the first app. Cannot be changed (unless manually by contacting Apple Support). Is the same for all apps published with this developer account. Appears, for example, in the breadcrumb navigation on top for each app.
  • Copyright can be set individually for each app. Thus, can be different for different apps published with one developer account

 

If this is correct, I am left with the following questions concerning the "seller name" that is displayed on the left-hand side when browsing the itunes Store via Web. I have noticed for some accounts  the "Company Name" (e.g, "Deutsche Lufthansa AG") can be different from the Seller Name ("Lufthansa German Airline").

  • Where can I determine which name is displayed here? When I log on to iTunes Connect, where can I find the text that is displayed as "Seller name"?
  • Can I change this name even after publishing my first app? If so, how?
  • Can this string differ for different languages (localization) for one and the same app?

 

Your support is highly appreciated.

 

Regards,

blootplazma


View the original article here

will outlook under windows 7 acceptcontact from iphone or ipad containing multi numbers or labels?

i have on my iphone 4S and ipad2 contacts containing multi numbers / labels. I dont seem to be able to get all the numbers under the one contact when I sync with outlook. some of the numbers do not appear in outlook contacts. is this a problem with everyone? i also tried to create in outlook contacts exactly the same labels so that both are compatible but still with no success..........appreciate a response


View the original article here

Company Name vs. Seller Name vs. Copyright (app publishing with company account)

Hello,

 

the more I read on this topic (publishing apps on the iTunes Store), the more confused I am...

 

Can somebody please confirm my findings when publishing an app using a company account:

  • Company Name is set once when uploading the first app. Cannot be changed (unless manually by contacting Apple Support). Is the same for all apps published with this developer account. Appears, for example, in the breadcrumb navigation on top for each app.
  • Copyright can be set individually for each app. Thus, can be different for different apps published with one developer account

 

If this is correct, I am left with the following questions concerning the "seller name" that is displayed on the left-hand side when browsing the itunes Store via Web. I have noticed for some accounts  the "Company Name" (e.g, "Deutsche Lufthansa AG") can be different from the Seller Name ("Lufthansa German Airline").

  • Where can I determine which name is displayed here? When I log on to iTunes Connect, where can I find the text that is displayed as "Seller name"?
  • Can I change this name even after publishing my first app? If so, how?
  • Can this string differ for different languages (localization) for one and the same app?

 

Your support is highly appreciated.

 

Regards,

blootplazma


View the original article here

xcode

Hi friends,

I´ve one problem with xCode for SnowLeopard (10.3.6). I need your help with this because the xCode 3.2.3 don´t install it in my Mac Book because he say that iTunes its open, but it´s not really.

 

Please, help me and give me one link to down load it well.

 

Thanks!!!!!!!!


View the original article here

Re: xcode

Welcome to the Apple Support Communities

 

If it says that iTunes is opened, open System Preferences > Accounts > Login Items, choose "iTunesHelper" and press - to delete it, so it won't start with your Mac. Then, restart your computer and try to install Xcode again


View the original article here

How Can I Convert Flash AS3 into HTML5?

My website is entirely coded into Flash AS3. Is there a way to convert it into HTML5? Apparently, Adobe's Wallaby and Google's Swiffy doesn't seem to work so well? Please Help?

 

Will Apple eventually support Flash on its iOS devices?


View the original article here

Re: xcode

Welcome to the Apple Support Communities

 

If it says that iTunes is opened, open System Preferences > Accounts > Login Items, choose "iTunesHelper" and press - to delete it, so it won't start with your Mac. Then, restart your computer and try to install Xcode again


View the original article here

Re: You D&B information was not accepted...........



Your first day on the support forums and you resort to name calling. Nice. You even used the "fanboi" pejorative, albeit spelled incorrectly. You are aware that this is an Apple forum? You are actively insulting people who are here to help you.



Have you considered the possibility that Apple's Developer registration process is working precisely as intended ?



I am sorry if I insulted you, John, with my complaint about Apple's crappy support. And as soon as I complained, you appear and start trolling. It's funny that you said you are a registered developer but you never mentioned you registered as an indiviudal. Totally off topic you told a story about "great software" and that I don't write such. You started insulting me that I should register as an individual and then "when I grow up and hire people and start writting great software" I should switch to a company registration. It's funny you said that. I have a company that is developing software since 15 years. And I am not an Apple fan boy (were you said you were from, Canada?  How about starting some insults based on my nationatlity now? Will that make you happy?) - I develop for almost all platforms out there. And I am a registered developer who sells software (not lame freeware apps hosted on a dreamhost $5 account, with an open ftp port running Darwin  ). It's a shame that there are internet trolls like you who instead of helping people (which is the purpose of this forums) prefer to post insults and off-topic posts. Continue writting "great" software, John Daniel. 6321 posts left until you get a free iPod  Keep on trollling.


View the original article here

Not able to restore to live iOS

This happend twice now.

 

Our devices were on iOS 6.1 Beta 4 and it expired. Now all devices are stuck on the initialization, asking for activation. The activation fails with every attempt.

 

When we try to update the device normally to live version, itunes shows error 'This device is not eligible for the requested build'.

 

Any idea on what is going wrong? How do we go around it?


View the original article here

Re: You D&B information was not accepted...........



Your first day on the support forums and you resort to name calling. Nice. You even used the "fanboi" pejorative, albeit spelled incorrectly. You are aware that this is an Apple forum? You are actively insulting people who are here to help you.



Have you considered the possibility that Apple's Developer registration process is working precisely as intended ?



I am sorry if I insulted you, John, with my complaint about Apple's crappy support. And as soon as I complained, you appear and start trolling. It's funny that you said you are a registered developer but you never mentioned you registered as an indiviudal. Totally off topic you told a story about "great software" and that I don't write such. You started insulting me that I should register as an individual and then "when I grow up and hire people and start writting great software" I should switch to a company registration. It's funny you said that. I have a company that is developing software since 15 years. And I am not an Apple fan boy (were you said you were from, Canada?  How about starting some insults based on my nationatlity now? Will that make you happy?) - I develop for almost all platforms out there. And I am a registered developer who sells software (not lame freeware apps hosted on a dreamhost $5 account, with an open ftp port running Darwin  ). It's a shame that there are internet trolls like you who instead of helping people (which is the purpose of this forums) prefer to post insults and off-topic posts. Continue writting "great" software, John Daniel. 6321 posts left until you get a free iPod  Keep on trollling.


View the original article here

Re: Xcode/cout/complex problem

Cheers Jongware, already tried the "std::endl" as well as "std::flush"... \n ... afraid none work!! but like I say am resigned to just displaying each component separately. thanks, m


View the original article here

xcode

Hi friends,

I´ve one problem with xCode for SnowLeopard (10.3.6). I need your help with this because the xCode 3.2.3 don´t install it in my Mac Book because he say that iTunes its open, but it´s not really.

 

Please, help me and give me one link to down load it well.

 

Thanks!!!!!!!!


View the original article here

Re: Foundation/NSString.h: No such file or directory.

Thank you for your attention. A lot of people out there say deleting and reinstalling Xcode can help. How true do you think it is?


View the original article here

Re: xcode

Welcome to the Apple Support Communities

 

If it says that iTunes is opened, open System Preferences > Accounts > Login Items, choose "iTunesHelper" and press - to delete it, so it won't start with your Mac. Then, restart your computer and try to install Xcode again


View the original article here

THE SOFTWARE 6.1 Beta 4 Expired before I had the chance to update it! I cant restore it anywhere and all the .ipsw fail to work with me

I pulled my iphone 5 out of my pocket and it said activation required???

i tried to activate through wifi and computer and nothing worked.

it says my software expired (ios 6.1 beta 4) i tried DFU mode and updating to beta 5,restoring,and everything I could possibly think of and nothing worked.

there has to be someone else on this planet that had the same problem as me someone help me!!!!


View the original article here