IOS常用API

1.弹窗

UIAlertView *alert = [[UIAlertView alloc] 

                          initWithTitle:@"Error getting Location" 

                          message:errorType 

                          delegate:nil 

                          cancelButtonTitle:@"Okay" 

                          otherButtonTitles:nil];

    [alert show];

    [alert release];

UIAlertView *alert = [[UIAlertView alloc] init];

        [alert setTitle:@"Error"];

        [alert setMessage:@"This device is not support camera!"];

        [alert setDelegate:self];

        [alert addButtonWithTitle:@"Colse"];

        [alert show];

        [alert release];

2.调用嘀嗒数

CFAbsoluteTimeGetCurrent()


3. 随机数

u_int32_t arc4random(void); 在stdlib.h 文件中



posted on 2012-04-10 14:57  几百人有爱  阅读(172)  评论(0编辑  收藏  举报