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 receive. Show all posts
Showing posts with label receive. Show all posts

Monday, September 16, 2013

Re: I don't receive the verification email when I try to sign in to the developer portal. What I can do?

After trying with costumer support finally I recieved the verification email, I will write down the steps I followed:

 

1. I have been invited to join to a developer program for my company.

2. I created an apple id account.

3. When I was invited, I tried to sign in with my new apple id.

4. Whenever I tried to sign in, Apple asked me to verify my email.

5. After I pressed serveral times the "Send Verification Email", nothing happened.

6. I opened iTunes from my iMac and I signed in with my new apple id.

7. They asked me to fill some data (including the payment information).

8. After filling the payment information, I returned to the developer program and tried to sign in again.

9. Apple asked one more time for the email verification, I hit again the "Send Email Verification" button.

10. This time, the email verification button worked and a new screen saying that the verification email was sent appeared and then, I could sign in into my account.

 

That's all, you just to add your personal data in iTunes and then try to verify your email again. Hope this helps someone.


View the original article here

I don't receive the verification email when I try to sign in to the developer portal. What I can do?

When I (or anyone of my coworkers) try to sign in, the developer program asks us to verify my email, when I click on "Send Invitation" I don't receive any email. I receive other emails from apple (for example, the forgot password email), How do I contact support or get help to solve this problem?

 

Thanks,

 

JTSonic


View the original article here

Tuesday, September 10, 2013

I don't receive the verification email when I try to sign in to the developer portal. What I can do?

When I (or anyone of my coworkers) try to sign in, the developer program asks us to verify my email, when I click on "Send Invitation" I don't receive any email. I receive other emails from apple (for example, the forgot password email), How do I contact support or get help to solve this problem?

 

Thanks,

 

JTSonic


View the original article here

I don't receive the verification email when I try to sign in to the developer portal. What I can do?

When I (or anyone of my coworkers) try to sign in, the developer program asks us to verify my email, when I click on "Send Invitation" I don't receive any email. I receive other emails from apple (for example, the forgot password email), How do I contact support or get help to solve this problem?

 

Thanks,

 

JTSonic


View the original article here

Tuesday, April 16, 2013

Re: Did Not Receive Program Enrollment Activation Email

I have this problem too.

I use Mac OS & Safari.

This is bug apple developer portal, please fix it.


View the original article here

Monday, April 15, 2013

Re: Did Not Receive Program Enrollment Activation Email

I have this problem too.

I use Mac OS & Safari.

This is bug apple developer portal, please fix it.


View the original article here

Did Not Receive Program Enrollment Activation Email

Hi,

 

I've enrolled to the iOS dev program, I see my credit card's been charged, but my membership is still not activated. It's been more than 24 hrs.

 

When I try to get support from this page https://developer.apple.com/contact/, and use the Program Enrollment link (https://developer.apple.com/contact/submit.php), browser reports an error:

The page isn't redirecting properly

    

          Firefox has detected that the server is redirecting the request for this address in a way that will never complete.  

 

  This problem can sometimes be caused by disabling or refusing to accept

    cookies.

 

I've tried with IE and Chrome as well and I get the same problem, that's why I'm posting about it here.


View the original article here

Friday, January 11, 2013

Can't make UILabel receive NSString

I have a storyboard with a TabBar, that have two views on. On the first tab, I have one UITextField one Button and one UILabel. On the other tab, I have only one UILabel. The tho tabs (views) are controlled by the same ViewController. The thing is, with the codes I get the float value of what was inserted on the UITextField, make it into a string, and put this string on both labels, the issue is, only the label that is on the same view that the UITextField and the button that  recives the string, the other label that is on the other view don't recive anything...  

Codes:

.h

 

#import

 

@interface NotasFirstViewController : UIViewController

@property (strong, nonatomic) IBOutlet UITextField *tfield;

- (IBAction)calcular:(id)sender;

-(IBAction)clicarFora:(id)sender;

-(IBAction)tirarteclado:(id)sender;

-(IBAction)calcsecondview:(id)sender;

@property (strong, nonatomic) NSString *valorstr;

@property (strong, nonatomic) IBOutlet UILabel *mostradordeteste;

@property (strong, nonatomic) IBOutlet UILabel *mostradordetestedois;

 

@end

 

 

.m

 

#import "NotasFirstViewController.h"

#import "NotasSecondViewController.h"

 

@interface NotasFirstViewController ()

 

@end

 

@implementation NotasFirstViewController

@synthesize valorstr;

 

- (void)viewDidLoad

{

    [super viewDidLoad];

  // Do any additional setup after loading the view, typically from a nib.

}

 

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

- (IBAction)calcular:(id)sender {

   

    float valor = [_tfield.text floatValue];

    NSString *valorstr = [[NSString alloc] initWithFormat:@"%.2f", valor];

    NSLog(@"%.2f", valor);

    NSLog(valorstr);

    _mostradordeteste.text = valorstr;

    _mostradordetestedois.text = valorstr;

   

}

 

-(IBAction)clicarFora:(id)sender{

   

    [_tfield resignFirstResponder];

   

}

-(IBAction)tirarteclado:(id)sender{

   

    [sender resignFirstResponder];

   

}

 

@end



View the original article here