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

Showing posts with label product. Show all posts
Showing posts with label product. Show all posts

Monday, September 16, 2013

New product ideaI, time to start a headphone revolution(iHead)

The headphones( especially the big ones) are popular with  people of all ages with its cool look and function, the market is getting bigger and bigger, and I think it's about time for Apple to enter that market. We all know what Apple is most famous for taking whatever is already in the market to a new level, Apple's headphone will be different from the existing headphone. When I use my headphone, I don't like how I have to drag my phone or ipod around, so I've been thinking it would be awesome if the headphone can store music. In that case you don't need to plug it into anything when you use it. This kind of headphone is perfect for Apple to make, because Apple has been making ipod for years(which nobody uses anymore), and it has experience in making ear buds too, so the technology is already there, all they need now is a cool design, which is what Apple products are famous for. I'm thinking that they can simply integrate the existing  ipod into the headphone. This new product is a headphone that can function like an ipod, or in another word, a ipod that you can put over you ears, and lets call it iHead for now. How do you select music you might ask. I'm thinking they can make ipod a detachable part of the headphone with a little screen on it, you can take it off, select the song you wan to listen, and clip it back. A headphone like that would be too expensive you might say. To solve that problem, the headphone can be sold separately with the ipod, and is compatible with the existing ipod. If you already have the ipod or don't want it, you don't have to get it, iHead can still be plugged into other things like a traditional headphone.  I have no doubt that Apple can make superb sound quality headphones that can compete with the top brand headphones, and the extra feature will definitely let it steal the market share like how ipod did few years back. On top of that,  the sale of iHead can also boost up the sale of iPod too.  I can totally see this idea come to life. I don't know how to communicate my idea to apple, that's why I'm just putting it here. If any of you know how to submit idea to apple, please let me know and let me know how you think of it too.


View the original article here

Wednesday, March 27, 2013

Apple Product Sponsor

I wasn't sure of this so I decided to ask you guys. Who sponsors/pays for Apple's products? Correct me if I'm wrong or something. I am doing this website for my assignment so wanted to know about this.


View the original article here

Friday, March 22, 2013

Re: Apple Product Sponsor

Nobody sponsors Apple's products.

We (the consumers) pay for them when we buy them.


View the original article here

Tuesday, February 26, 2013

Mac app In-app Purchase : Invalid product ID

Thanks for reading. I'm having problem with Mac app In-app Purchase.

I just setup Mac developer account with $99 subscription.

1) Go to Developer Certificate Utility, create App ID: com.mpham.TestIAP, create certificate, add my Mac ID to System list. Final, add Provisioning profile (development)

2) Go to iTunes connect, create App: com.mpham.TestIAP, create IAP: com.mpham.TestIAP.IAP1. Final, make app status to "Waiting For Upload"

3) I create simple Cocoa app: com.mpham.TestIAP, choose Code sign to com.mpham.TestIAP

 

 

    //

    //  AppDelegate.h

    //

   

    #import

    #import

   

   

    @interface AppDelegate : NSObject

    {

        SKProduct *proUpgradeProduct;

        SKProductsRequest *productsRequest;

    }

   

    @property (assign) IBOutlet NSWindow *window;

    @end

 

 

 

 

and

 

 

    //

    //  AppDelegate.m

    //

   

    #import "AppDelegate.h"

   

    #define k1 @"com.mpham.TestIAP.IAP1"

    #define k2 @"IAP1"

   

   

    @implementation AppDelegate

   

    - (void)applicationDidFinishLaunching:(NSNotification *)aNotification

    {

        if ([SKPaymentQueue canMakePayments])

        {

            [self requestIAP1];

            [self requestIAP2];

           

        }

       

   

    }

   

   

    - (void)requestIAP1

    {

        NSLog(@"requestIAP1");

        NSSet *productIdentifiers = [NSSet setWithObject:k1];

        productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:productIdentifiers];

        productsRequest.delegate = self;

        [productsRequest start];

       

    }

    - (void)requestIAP2

    {

        NSLog(@"requestIAP2");

        NSSet *productIdentifiers = [NSSet setWithObject:k2];

        productsRequest = [[SKProductsRequest alloc] initWithProductIdentifiers:productIdentifiers];

        productsRequest.delegate = self;

        [productsRequest start];

       

    }

   

    #pragma mark SKProductsRequestDelegate methods

   

    - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response

    {

        NSArray *products = [[NSArray alloc] initWithArray:response.products];

       

       

        for(SKProduct *item in products)

        {

            NSLog(@"Product title: %@" , item.localizedTitle);

            NSLog(@"Product description: %@" , item.localizedDescription);

            NSLog(@"Product price: %@" , item.price);

            NSLog(@"Product id: %@" , item.productIdentifier);

        }

       

        for (NSString *invalidProductId in response.invalidProductIdentifiers)

        {

            NSLog(@"Invalid : %@" , invalidProductId);

        }

    }

   

    #pragma mark - PaymentQueue

   

    -(void)paymentQueue:(SKPaymentQueue *)queue removedTransactions:(NSArray *)transactions

    {

    }

   

    -(void)paymentQueue:(SKPaymentQueue *)queue restoreCompletedTransactionsFailedWithError:(NSError *)error

    {

    }

   

    -(void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions

    {

    }

   

    -(void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue

    {

    }

   

    @end

 

 

 

 

It's run and show the log

 

 

    2013-02-18 16:59:14.948 TestIAP[12646:403] requestIAP1

    2013-02-18 16:59:14.951 TestIAP[12646:403] requestIAP2

    2013-02-18 16:59:15.939 TestIAP[12646:1b03] Invalid : IAP1

    2013-02-18 16:59:16.043 TestIAP[12646:1b03] Invalid : com.mpham.TestIAP.IAP1

 

 

It's mean there is Invalid product, but I created product in iTunesConnect, could anyone please help me?


View the original article here

Thursday, February 14, 2013

where can i submit a question/idea about a product that doesn't exist yet to apple?

hi,

 

i'm an artist, and i've been for a long time interested in the developpement of a music composing tool based on vocal technology mixed with a tactile-eyesight environment that could allow anyone to easily compose music of their own by singing;

 

this process could include video ( editing ) too.

 

since i'm only an user, not a programmer neither a technician, i've had in mind for a long time to try and keep in touch with apple products developpers to evoke this concept and idea, but i didn't managed to find an email or didn't know who to contact about that.

 

can you please tell me where to write or who to join ?

 

regards.

 

( it's irrelevant, but here's my facebook and some of my music- 2 pages- :

 

https://www.facebook.com/ThomasZOBRISTmusic

https://soundcloud.com/zobristmusic

http://soundcloud.com/thomas-zobrist

)


View the original article here