iOS 总结

// 截屏

//    UIGraphicsBeginImageContext(self.view.frame.size);

//    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];

//    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();

//    UIGraphicsEndImageContext();

//    UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);



// 裁剪图片

-(UIImage *) cutFromImage:(UIImage *)image inRect:(CGRect)rect{

    CGImageRef sourceImageRef = [image CGImage];

    CGImageRef newImageRef = CGImageCreateWithImageInRect(sourceImageRef, rect);

    UIImage *newImage = [UIImage imageWithCGImage:newImageRef];

    return newImage;

}

// 缩放图片

- (UIImage *) scaleFromImage: (UIImage *) image toSize: (CGSize) size

{

    UIGraphicsBeginImageContext(size);

    [image drawInRect:CGRectMake(0, 0, size.width, size.height)];

    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return newImage;

}


// 相机的一些按钮效果设置

#pragma mark get/show the UIView we want

//Find the view we want in camera structure.

-(UIView *)findView:(UIView *)aView withName:(NSString *)name{

    Class cl = [aView class];

    NSString *desc = [cl description];

   

    if ([name isEqualToString:desc])

        return aView;

   

    for (NSUInteger i = 0; i < [aView.subviews count]; i++)

    {

        UIView *subView = [aView.subviews objectAtIndex:i];

        subView = [self findView:subView withName:name];

        if (subView)

            return subView;

    }

    return nil;

}

#pragma mark addSomeElements

-(void)addSomeElements:(UIViewController *)viewController{

   

    UIView *viewTop = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, screenWidth, (screenHeight-screenWidth)/2)];

    [viewTop setAlpha:0.5f];

    [viewTop setBackgroundColor:[UIColor blackColor]];

    UIView *viewButtom = [[UIView alloc] initWithFrame:CGRectMake(0.0f, screenHeight-(screenHeight-screenWidth)/2, screenWidth, (screenHeight-screenWidth)/2)];

    [viewButtom setAlpha:0.5f];   

    [viewButtom setBackgroundColor:[UIColor blackColor]];

    //Add the motion view here, PLCameraView and picker.view are both OK

    UIView *PLCameraView=[self findView:viewController.view withName:@"PLCameraView"];

    [PLCameraView addSubview:viewTop];

    [PLCameraView addSubview:viewButtom];

    //Add label to cropOverlay

    UIView *cropOverlay=[self findView:PLCameraView withName:@"PLCropOverlay"];

    [cropOverlay addSubview:viewTop];

    [cropOverlay addSubview:viewButtom];

       

    [cropOverlay addSubview:m_viewActivity];

    [cropOverlay addSubview:m_activity];

   

    [viewTop release];

    [viewButtom release];

   

    //Get Bottom Bar

    UIView *bottomBar=[self findView:PLCameraView withName:@"PLCropOverlayBottomBar"];

   

    //Get ImageView For Save

    UIImageView *bottomBarImageForSave = [bottomBar.subviews objectAtIndex:0];

   

    //Get Button 0

    UIButton *retakeButton= [bottomBarImageForSave.subviews objectAtIndex:0];

    [retakeButton setTitle:@"重拍" forState:UIControlStateNormal];

   

    //Get Button 1

    UIButton *useButton= [bottomBarImageForSave.subviews objectAtIndex:1];

    [useButton setTitle:@"保存" forState:UIControlStateNormal];

   

    //Get ImageViewBar For Camera

    UIImageView *bottomBarImageForCamera = [bottomBar.subviews objectAtIndex:1];

   

    //Set Bottom Bar Image

//    UIImage *image=[[UIImage alloc] initWithContentsOfFile:[[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"BottomBar.png"]];

//    bottomBarImageForCamera.image=image;

//    [image release];

   

    //Get Button 0(The Capture Button)

//    UIButton *cameraButton = [bottomBarImageForCamera.subviews objectAtIndex:0];

   

    //Get Button 1

    UIButton *cancelButton=[bottomBarImageForCamera.subviews objectAtIndex:1];   

    [cancelButton setTitle:@"取消" forState:UIControlStateNormal];

}

#pragma mark UINavigationControllerDelegate

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{

    [self stopActivity];

    [self addSomeElements:viewController];

}


// 错误信息:initializer element is not constant

box2d 官方帮助有写的 你包含了c++文件 所以你需要把所有你的.m文件改成.mm文件


//农历转换函数

+(NSString *)LunarForSolar:(NSDate *)solarDate{

    //天干名称

    NSArray *cTianGan = [NSArray arrayWithObjects:@"甲",@"乙",@"丙",@"丁",@"戊",@"己",@"庚",@"辛",@"壬",@"癸", nil];

   

    //地支名称

    NSArray *cDiZhi = [NSArray arrayWithObjects:@"子",@"丑",@"寅",@"卯",@"辰",@"巳",@"午",@"未",@"申",@"酉",@"戌",@"亥",nil];

   

    //属相名称

    NSArray *cShuXiang = [NSArray arrayWithObjects:@"鼠",@"牛",@"虎",@"兔",@"龙",@"蛇",@"马",@"羊",@"猴",@"鸡",@"狗",@"猪",nil];

   

    //农历日期名

    NSArray *cDayName = [NSArray arrayWithObjects:@"*",@"初一",@"初二",@"初三",@"初四",@"初五",@"初六",@"初七",@"初八",@"初九",@"初十",

                         @"十一",@"十二",@"十三",@"十四",@"十五",@"十六",@"十七",@"十八",@"十九",@"二十",

                         @"廿一",@"廿二",@"廿三",@"廿四",@"廿五",@"廿六",@"廿七",@"廿八",@"廿九",@"三十",nil];

   

    //农历月份名

    NSArray *cMonName = [NSArray arrayWithObjects:@"*",@"正",@"二",@"三",@"四",@"五",@"六",@"七",@"八",@"九",@"十",@"十一",@"腊",nil];

   

    //公历每月前面的天数

    const int wMonthAdd[12] = {0,31,59,90,120,151,181,212,243,273,304,334};

   

    //农历数据

    const int wNongliData[100] = {2635,333387,1701,1748,267701,694,2391,133423,1175,396438

        ,3402,3749,331177,1453,694,201326,2350,465197,3221,3402

        ,400202,2901,1386,267611,605,2349,137515,2709,464533,1738

        ,2901,330421,1242,2651,199255,1323,529706,3733,1706,398762

        ,2741,1206,267438,2647,1318,204070,3477,461653,1386,2413

        ,330077,1197,2637,268877,3365,531109,2900,2922,398042,2395

        ,1179,267415,2635,661067,1701,1748,398772,2742,2391,330031

        ,1175,1611,200010,3749,527717,1452,2742,332397,2350,3222

        ,268949,3402,3493,133973,1386,464219,605,2349,334123,2709

        ,2890,267946,2773,592565,1210,2651,395863,1323,2707,265877};

   

    static int wCurYear,wCurMonth,wCurDay;

    static int nTheDate,nIsEnd,m,k,n,i,nBit;

   

    //取当前公历年、月、日

    NSDateComponents *components = [[NSCalendar currentCalendar] components:NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit fromDate:solarDate];

    wCurYear = [components year];

    wCurMonth = [components month];

    wCurDay = [components day];

   

    //计算到初始时间1921年2月8日的天数:1921-2-8(正月初一)

    nTheDate = (wCurYear - 1921) * 365 + (wCurYear - 1921) / 4 + wCurDay + wMonthAdd[wCurMonth - 1] - 38;

    if((!(wCurYear % 4)) && (wCurMonth > 2))

        nTheDate = nTheDate + 1;

   

    //计算农历天干、地支、月、日

    nIsEnd = 0;

    m = 0;

    while(nIsEnd != 1)

    {

        if(wNongliData[m] < 4095)

            k = 11;

        else

            k = 12;

        n = k;

        while(n>=0)

        {

            //获取wNongliData(m)的第n个二进制位的值

            nBit = wNongliData[m];

            for(i=1;i

                nBit = nBit/2;

           

            nBit = nBit % 2;

           

            if (nTheDate <= (29 + nBit))

            {

                nIsEnd = 1;

                break;

            }

           

            nTheDate = nTheDate - 29 - nBit;

            n = n - 1;

        }

        if(nIsEnd)

            break;

        m = m + 1;

    }

    wCurYear = 1921 + m;

    wCurMonth = k - n + 1;

    wCurDay = nTheDate;

    if (k == 12)

    {

        if (wCurMonth == wNongliData[m] / 65536 + 1)

            wCurMonth = 1 - wCurMonth;

        else if (wCurMonth > wNongliData[m] / 65536 + 1)

            wCurMonth = wCurMonth - 1;

    }

   

    //生成农历天干、地支、属相

    NSString *szShuXiang = (NSString *)[cShuXiang objectAtIndex:((wCurYear - 4) % 60) % 12];

    NSString *szNongli = [NSString stringWithFormat:@"%@(%@%@)年",szShuXiang, (NSString *)[cTianGan objectAtIndex:((wCurYear - 4) % 60) % 10],(NSString *)[cDiZhi objectAtIndex:((wCurYear - 4) % 60) % 12]];

   

    //生成农历月、日

    NSString *szNongliDay;

    if (wCurMonth < 1){

        szNongliDay = [NSString stringWithFormat:@"闰%@",(NSString *)[cMonName objectAtIndex:-1 * wCurMonth]];

    }

    else{

        szNongliDay = (NSString *)[cMonName objectAtIndex:wCurMonth];

    }

   

    NSString *lunarDate = [NSString stringWithFormat:@"%@ %@月 %@",szNongli,szNongliDay,(NSString *)[cDayName objectAtIndex:wCurDay]];

   

    return lunarDate;

}


// 捕获键盘弹出隐藏的方法

[[NSNotificationCenter defaultCenter] addObserver:self

                                                 selector:@selector(keyboardWillShow:)

                                                     name:UIKeyboardWillShowNotification

                                                   object:nil];

       

[[NSNotificationCenter defaultCenter] addObserver:self

                                                 selector:@selector(keyboardWillHide:)

                                                     name:UIKeyboardWillHideNotification

                                                   object:nil];   

-(void) keyboardWillShow:(NSNotification *)note {}  

- (void)keyboardWillHide:(NSNotification *)note {}


// textview自动改变高度

    CGSize _size = [[textView.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] sizeWithFont:[UIFont boldSystemFontOfSize:14]];

   

    int intTextViewWidth = textView.frame.size.width;

    int row =  (int) _size.width / (intTextViewWidth-10) + 1;

    [textView setFrame:CGRectMake(20,100-row * _size.height, intTextViewWidth, row * _size.height + 14)];

    textView.contentInset = UIEdgeInsetsZero;

// 为了防止自动改变高度中汉字提示在textview中出现,吧scroll禁用掉就ok。   

[textView setScrollEnabled:NO];


// url地址有汉字转换

    NSString *urlString = [NSString stringWithFormat:@"http:/%@",@"雷锋"];

    NSString* strAfterDecodeByUTF8AndURI =

    [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    NSURL *url = [NSURL URLWithString: strAfterDecodeByUTF8AndURI];


// 格式化时间

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

    [formatter setDateFormat:@"YYMMddHHmm"];

    int strDate = [[formatter stringFromDate:[NSDate date]] intValue];

    [formatter release];


// 圆角

//给图层添加背景图片:

        //myView.layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage;

        //将图层的边框设置为圆脚

        myWebView.layer.cornerRadius = 8;

        myWebView.layer.masksToBounds = YES;

        //给图层添加一个有色边框

        myWebView.layer.borderWidth = 5;

        myWebView.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];


// itunes打开你应用

    NSString *str = [NSString stringWithFormat:                      

                     @"itms-apps://itunes.apple.com/cn/app/ya-mi-gao-er-fu-zhang-shang/id%d?mt=8",

                     APP_ADDRESS];

// ITUNES 打开你的评论

     NSString *str = [NSString stringWithFormat:

                     @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d",

                     APP_ADDRESS]; 

 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];


// 监控键盘高度的改变

step 1

在进入视图的时候添加监视:(viewDidLoad什么的)

//Observe keyboard hide and show notifications to resize the text view appropriately.

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];


step 2:

在键盘动作的时候移动视图:

- (void)keyboardWillShow:(NSNotification *)notification {


NSDictionary *userInfo = [notification userInfo];

// Get the origin of the keyboard when it's displayed.

NSValue* aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];

// Get the top of the keyboard as the y coordinate of its origin in self's view's coordinate system. The bottom of the text view's frame should align with the top of the keyboard's final position.

CGRect keyboardRect = [aValue CGRectValue];

keyboardRect = [self.view convertRect:keyboardRect fromView:nil];

CGFloat keyboardTop = keyboardRect.origin.y;

CGRect newTextViewFrame = self.view.bounds;

newTextViewFrame.size.height = keyboardTop - self.view.bounds.origin.y;

// Get the duration of the animation.

NSValue *animationDurationValue = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];

NSTimeInterval animationDuration;

[animationDurationValue getValue:&animationDuration];

// Animate the resize of the text view's frame in sync with the keyboard's appearance.

[UIView beginAnimations:nil context:NULL];

[UIView setAnimationDuration:animationDuration];

textView.frame = newTextViewFrame;

[UIView commitAnimations];

}


- (void)keyboardWillHide:(NSNotification *)notification {

NSDictionary* userInfo = [notification userInfo];


NSValue *animationDurationValue = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];

NSTimeInterval animationDuration;

[animationDurationValue getValue:&animationDuration];

[UIView beginAnimations:nil context:NULL];

[UIView setAnimationDuration:animationDuration];

textView.frame = self.view.bounds;

[UIView commitAnimations];

}

step 3:

在退出视图的时候注销通知

viewDidUnload:

[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];

[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];

dealloc:

[[NSNotificationCenter defaultCenter] removeObserver:self name:nil object:nil];


sina微博缓存清理:

    NSHTTPCookie *cookie;

    NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];

    for (cookie in [storage cookies]) {

        [storage deleteCookie:cookie];

    }


应用设置成文稿传输(下列列出的应用程序可以在iphone和这台电脑之间传输文稿)

在 info.plist 里添加 Application supports iTunes file sharing 属性为true 就可以了 。


计算点击的一点是否在一条线段上 point(点击的点) fpoint(线上的起始点) tpoint(线上的结束点) width(线的宽度)

- (BOOL)CGPoint:(CGPoint)point isOnLineFromPoint:(CGPoint)fPoint toPoint:(CGPoint)tPoint width:(CGFloat)width

{

    float buffer = width/2.0;

    if (point.x < fPoint.x-buffer && point.x < tPoint.x-buffer) {

        return NO;

    }

    if (point.x > fPoint.x+buffer && point.x > tPoint.x+buffer) {

        return NO;

    }

    if (point.y < fPoint.y-buffer && point.y < tPoint.y-buffer) {

        return NO;

    }

    if (point.y > fPoint.y+buffer && point.y > tPoint.y+buffer) {

        return NO;

    }


    float k;

    float sourceY;

    float bufferY;

    float lineWidth = tPoint.x-fPoint.x;

    float lineHeight = tPoint.y-fPoint.y;

   

    if (0 == lineWidth || 0 == lineHeight) {

        if (0 == lineWidth) {

            return YES;

        }

        if (0 == lineHeight) {

            return YES;

        }

    }

    else

    {

        k = lineHeight/lineWidth;

        sourceY = k*(point.x-fPoint.x)+fPoint.y;

    }

    bufferY = sqrtf(powf((k*width/2.0), 2)+powf((width/2.0), 2));

   

    if (point.y <= sourceY+bufferY && point.y >= sourceY-bufferY) {

        return YES;

    }

    return NO;

}


// 获取视频的长度

    AVAsset *assetVideo = [AVAsset assetWithURL:[NSURL fileURLWithPath:v_strVideoPath]];

    CMTime assetTime = [assetVideo duration];

    Float64 duration = CMTimeGetSeconds(assetTime);


// Cannot proceed with delivery: an existing transporter instance is currently uploading this package。

把Application Loader(XCode->Organizer->Archived Applications->Submit)中正在上传的文件中断或者删除,再次Submit提示:

Cannot proceed with delivery: an existing transporter instance is currently uploading this package。

无论如何Clean All、重新Submit都失败,给出上述提示。

原因:上传的动作被记录在UploadToken中了。

解决方法:

(1)打开终端,输入cd,到达个人用户目录下。

(2)输入ls -a,可以看到一个隐藏的目录 .itmstransporter

(3)cd .itmstransporter/UploadTokens

(4)ls ,可以看到一个类似 xxxxx.local_itunesConnectUSERxxxxxx.itmsp.token文件

(5)nano  xxxxx.local_itunesConnectUSERxxxxxx.itmsp.token,在里面把内容都删除,保存。

(6)重新在Organizer里面submit,ok了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值