iOS開發(fā)經(jīng)驗(yàn)總結(jié)

總結(jié)這幾年所遇見的坑

一贬丛、 iPhone Size


二店乐、 給navigation Bar 設(shè)置 title 顏色

UIColor *whiteColor = [UIColor whiteColor];

NSDictionary *dic = [NSDictionary dictionaryWithObject:whiteColor forKey:NSForegroundColorAttributeName];

[self.navigationController.navigationBar setTitleTextAttributes:dic];

三龄坪、 如何把一個(gè)CGPoint存入數(shù)組里

CGPoint? itemSprite1position = CGPointMake(100, 200);

NSMutableArray * array? = [[NSMutableArray alloc] initWithObjects:NSStringFromCGPoint(itemSprite1position),nil];

//? ? 從數(shù)組中取值的過程是這樣的:

CGPoint point = CGPointFromString([array objectAtIndex:0]);

1

NSLog(@"point is %@.", NSStringFromCGPoint(point));

謝謝@bigParis的建議缀匕,可以用NSValue進(jìn)行基礎(chǔ)數(shù)據(jù)的保存惋鸥,用這個(gè)方法更加清晰明確贺嫂。

CGPoint? itemSprite1position = CGPointMake(100, 200);

NSValue *originValue = [NSValue valueWithCGPoint:itemSprite1position];

NSMutableArray * array? = [[NSMutableArray alloc] initWithObjects:originValue, nil];

//? ? 從數(shù)組中取值的過程是這樣的:

NSValue *currentValue = [array objectAtIndex:0];

CGPoint point = [currentValue CGPointValue];

NSLog(@"point is %@.", NSStringFromCGPoint(point));

現(xiàn)在Xcode7后OC支持泛型了际起,可以用NSMutableArray*array來保存拾碌。

四、 UIColor 獲取 RGB 值

UIColor *color = [UIColor colorWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];

const CGFloat *components = CGColorGetComponents(color.CGColor);

NSLog(@"Red: %f", components[0]);

NSLog(@"Green: %f", components[1]);

NSLog(@"Blue: %f", components[2]);

NSLog(@"Alpha: %f", components[3]);

五街望、 修改textField的placeholder的字體顏色校翔、大小

self.textField.placeholder = @"username is in here!";

[self.textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];

[self.textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

使用attributedString進(jìn)行設(shè)置

NSString *string = @"這里是你要修改的內(nèi)容";

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:string];

[attributedString addAttribute:NSForegroundColorAttributeName

value:[UIColor redColor]

range:NSMakeRange(0, [string length])];

[attributedString addAttribute:NSFontAttributeName

value:[UIFont systemFontOfSize:16]

range:NSMakeRange(0, [string length])];

self.textField.attributedPlaceholder = attributedString;

六、兩點(diǎn)之間的距離

static __inline__ CGFloat CGPointDistanceBetweenTwoPoints(CGPoint point1, CGPoint point2) { CGFloat dx = point2.x - point1.x; CGFloat dy = point2.y - point1.y; return sqrt(dx*dx + dy*dy);}


七它匕、IOS開發(fā)-關(guān)閉/收起鍵盤方法總結(jié)

1展融、點(diǎn)擊Return按扭時(shí)收起鍵盤

- (BOOL)textFieldShouldReturn:(UITextField *)textField

{

return [textField resignFirstResponder];

}

2、點(diǎn)擊背景View收起鍵盤

[self.view endEditing:YES];

3豫柬、你可以在任何地方加上這句話告希,可以用來統(tǒng)一收起鍵盤

[[[UIApplication sharedApplication] keyWindow] endEditing:YES];

八、在使用 ImagesQA.xcassets 時(shí)需要注意

將圖片直接拖入image到ImagesQA.xcassets中時(shí)烧给,圖片的名字會(huì)保留燕偶。

這個(gè)時(shí)候如果圖片的名字過長(zhǎng),那么這個(gè)名字會(huì)存入到ImagesQA.xcassets中础嫡,名字過長(zhǎng)會(huì)引起SourceTree判斷異常指么。

九、UIPickerView 判斷開始選擇到選擇結(jié)束

開始選擇的榴鼎,需要在繼承UiPickerView伯诬,創(chuàng)建一個(gè)子類,在子類中重載

- (UIView*)hitTest:(CGPoint)point withEvent:(UIEvent*)event

當(dāng)[super hitTest:point withEvent:event]返回不是nil的時(shí)候巫财,說明是點(diǎn)擊中UIPickerView中了盗似。

結(jié)束選擇的, 實(shí)現(xiàn)UIPickerView的delegate方法

- (void)pickerView:(UIPickerView*)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

當(dāng)調(diào)用這個(gè)方法的時(shí)候平项,說明選擇已經(jīng)結(jié)束了赫舒。

十悍及、iOS模擬器 鍵盤事件

當(dāng)iOS模擬器 選擇了Keybaord->Connect Hardware keyboard 后,不彈出鍵盤接癌。

當(dāng)代碼中添加了

[[NSNotificationCenter defaultCenter] addObserver:self

selector:@selector(keyboardWillHide)

name:UIKeyboardWillHideNotification

object:nil];

進(jìn)行鍵盤事件的獲取心赶。那么在此情景下將不會(huì)調(diào)用- (void)keyboardWillHide.因?yàn)闆]有鍵盤的隱藏和顯示。


十一缺猛、使用size classes后上面下面黑色


使用了size classes后缨叫,在模擬器上出現(xiàn)了上面和下面部分的黑色

可以在General->App Icons and Launch Images->Launch Images Source中設(shè)置Images.xcassets來解決。


十二荔燎、設(shè)置不同size在size classes


Font中設(shè)置不同的size classes弯汰。

十三、線程中更新 UILabel的text

[self.label1 performSelectorOnMainThread:@selector(setText:) ? ? withObject:textDisplay

waitUntilDone:YES];

label1 為UILabel湖雹,當(dāng)在子線程中咏闪,需要進(jìn)行text的更新的時(shí)候,可以使用這個(gè)方法來更新摔吏。

其他的UIView 也都是一樣的鸽嫂。

十四、使用UIScrollViewKeyboardDismissMode實(shí)現(xiàn)了Message app的行為

像Messages app一樣在滾動(dòng)的時(shí)候可以讓鍵盤消失是一種非常好的體驗(yàn)征讲。然而据某,將這種行為整合到你的app很難。幸運(yùn)的是诗箍,蘋果給UIScrollView添加了一個(gè)很好用的屬性keyboardDismissMode癣籽,這樣可以方便很多。

現(xiàn)在僅僅只需要在Storyboard中改變一個(gè)簡(jiǎn)單的屬性滤祖,或者增加一行代碼筷狼,你的app可以和辦到和Messages app一樣的事情了。

這個(gè)屬性使用了新的UIScrollViewKeyboardDismissMode enum枚舉類型匠童。這個(gè)enum枚舉類型可能的值如下:

typedef NS_ENUM(NSInteger, UIScrollViewKeyboardDismissMode) {

UIScrollViewKeyboardDismissModeNone,

UIScrollViewKeyboardDismissModeOnDrag,? ? ? // dismisses the keyboard when a drag begins

UIScrollViewKeyboardDismissModeInteractive, // the keyboard follows the dragging touch off screen, and may be pulled upward again to cancel the dismiss

} NS_ENUM_AVAILABLE_IOS(7_0);

以下是讓鍵盤可以在滾動(dòng)的時(shí)候消失需要設(shè)置的屬性:



十五埂材、報(bào)錯(cuò) "_sqlite3_bind_blob", referenced from:

將 sqlite3.dylib加載到framework

十六、 statusbar 文字顏色

默認(rèn)status bar字體顏色是黑色的汤求,要修改為白色的需要在infoPlist里設(shè)置UIViewControllerBasedStatusBarAppearance為NO俏险,然后在代碼里添加:[application setStatusBarStyle:UIStatusBarStyleLightContent];

十七、給UIView 設(shè)置透明度扬绪,不影響其他sub views

UIView設(shè)置了alpha值竖独,但其中的內(nèi)容也跟著變透明。有沒有解決辦法挤牛?

設(shè)置background color的顏色中的透明度

比如:[self.testView setBackgroundColor:[UIColor colorWithRed:0.0 green:1.0 blue:1.0 alpha:0.5]];

設(shè)置了color的alpha莹痢, 就可以實(shí)現(xiàn)背景色有透明度,當(dāng)其他sub views不受影響給color 添加 alpha,或修改alpha的值格二。

// Returns a color in the same color space as the receiver with the specified alpha component.

- (UIColor *)colorWithAlphaComponent:(CGFloat)alpha;

// eg.

[view.backgroundColor colorWithAlphaComponent:0.5];

十八、將color轉(zhuǎn)為UIImage

//將color轉(zhuǎn)為UIImage

- (UIImage *)createImageWithColor:(UIColor *)color

{

CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);

UIGraphicsBeginImageContext(rect.size);

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetFillColorWithColor(context, [color CGColor]);

CGContextFillRect(context, rect);

UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return theImage;

}

二十竣蹦、NSTimer 用法

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:.02 target:self selector:@selector(tick:) userInfo:nil repeats:YES];


二十一顶猜、Bundle identifier 應(yīng)用標(biāo)示符

Bundle identifier 是應(yīng)用的標(biāo)示符,表明應(yīng)用和其他APP的區(qū)別痘括。


二十二长窄、NSDate 獲取幾年前的時(shí)間

獲取到30年前的日期

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

NSDateComponents *dateComponents = [[NSDateComponents alloc] init];

[dateComponents setYear:-30];

self.birthDate = [gregorian dateByAddingComponents:dateComponents toDate:[NSDate date] options:0];

二十三、iOS加載啟動(dòng)圖的時(shí)候隱藏statusbar

只需需要在info.plist中加入Status bar is initially hidden 設(shè)置為YES就好

二十四纲菌、iOS 開發(fā)挠日,工程中混合使用 ARC 和非ARC

Xcode 項(xiàng)目中我們可以使用 ARC 和非 ARC 的混合模式。

如果你的項(xiàng)目使用的非 ARC 模式翰舌,則為 ARC 模式的代碼文件加入 -fobjc-arc 標(biāo)簽嚣潜。

如果你的項(xiàng)目使用的是 ARC 模式,則為非 ARC 模式的代碼文件加入 -fno-objc-arc 標(biāo)簽椅贱。

添加標(biāo)簽的方法:

打開:你的target -> Build Phases -> Compile Sources.

雙擊對(duì)應(yīng)的 *.m 文件

在彈出窗口中輸入上面提到的標(biāo)簽 -fobjc-arc / -fno-objc-arc

點(diǎn)擊 done 保存

二十五懂算、 boundingRectWithSize:options:attributes:context:計(jì)算文本尺寸的使用

之前使用了NSString類的sizeWithFont:constrainedToSize:lineBreakMode:方法,但是該方法已經(jīng)被iOS7 Deprecated了庇麦,而iOS7新出了一個(gè)boudingRectWithSize:options:attributes:context方法來代替计技。

NSDictionary *attribute = @{NSFontAttributeName: [UIFont systemFontOfSize:13]};

CGSize size = [@"相關(guān)NSString" boundingRectWithSize:CGSizeMake(100, 0) options: NSStringDrawingTruncatesLastVisibleLine | NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:attribute context:nil].size;

二十六、NSDate使用 注意

NSDate 在保存數(shù)據(jù)山橄,傳輸數(shù)據(jù)中垮媒,一般最好使用UTC時(shí)間。

在顯示到界面給用戶看的時(shí)候航棱,需要轉(zhuǎn)換為本地時(shí)間睡雇。

二十七、在UIViewController中property的一個(gè)UIViewController的Present問題

如果在一個(gè)UIViewController A中有一個(gè)property屬性為UIViewController B饮醇,實(shí)例化后入桂,將BVC.view 添加到主UIViewController A.view上,如果在viewB上進(jìn)行 - (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag completion:(void (^)(void))completion NS_AVAILABLE_IOS(5_0);的操作將會(huì)出現(xiàn)驳阎,“ Presenting view controllers on detached view controllers is discouraged ” 的問題抗愁。

以為BVC已經(jīng)present到AVC中了,所以再一次進(jìn)行會(huì)出現(xiàn)錯(cuò)誤呵晚。

解決方法:

[self.view.window.rootViewController presentViewController:imagePicker

animated:YES

completion:^{

NSLog(@"Finished");

}];

二十八蜘腌、UITableViewCell indentationLevel 使用

UITableViewCell 屬性 NSInteger indentationLevel 的使用, 對(duì)cell設(shè)置 indentationLevel的值饵隙,可以將cell 分級(jí)別撮珠。

還有 CGFloat indentationWidth; 屬性,設(shè)置縮進(jìn)的寬度金矛。

總縮進(jìn)的寬度: indentationLevel * indentationWidth

二十九芯急、ActivityViewController 使用AirDrop分享

使用AirDrop 進(jìn)行分享:

NSArray *array = @[@"test1", @"test2"];

UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:array applicationActivities:nil];

[self presentViewController:activityVC animated:YES

completion:^{

NSLog(@"Air");

}];


三十勺届、獲取CGRect的height

獲取CGRect的height, 除了 self.createNewMessageTableView.frame.size.height 這樣進(jìn)行點(diǎn)語法獲取娶耍。

還可以使用CGRectGetHeight(self.createNewMessageTableView.frame) 進(jìn)行直接獲取免姿。

除了這個(gè)方法還有? func CGRectGetWidth(rect: CGRect) -> CGFloat

等等簡(jiǎn)單地方法

func CGRectGetMinX(rect: CGRect) -> CGFloat

func CGRectGetMidX(rect: CGRect) -> CGFloat

func CGRectGetMaxX(rect: CGRect) -> CGFloat

func CGRectGetMinY(rect: CGRect) -> CGFloat

三十一、打印 %

NSString *printPercentStr = [NSString stringWithFormat:@"%%"];

三十二榕酒、在工程中查看是否使用 IDFA

allentekiMac-mini:JiKaTongGit lihuaxie$ grep -r advertisingIdentifier .

grep: ./ios/Framework/AMapSearchKit.framework/Resources: No such file or directory

Binary file ./ios/Framework/MAMapKit.framework/MAMapKit matches

Binary file ./ios/Framework/MAMapKit.framework/Versions/2.4.1.e00ba6a/MAMapKit matches

Binary file ./ios/Framework/MAMapKit.framework/Versions/Current/MAMapKit matches

Binary file ./ios/JiKaTong.xcodeproj/project.xcworkspace/xcuserdata/lihuaxie.xcuserdatad/UserInterfaceState.xcuserstate matches

allentekiMac-mini:JiKaTongGit lihuaxie$

打開終端胚膊,到工程目錄中, 輸入:

grep -r advertisingIdentifier .

可以看到那些文件中用到了IDFA想鹰,如果用到了就會(huì)被顯示出來紊婉。

三十三、APP 屏蔽 觸發(fā)事件

[[UIApplication sharedApplication] beginIgnoringInteractionEvents];

三十四辑舷、設(shè)置Status bar顏色

status bar的顏色設(shè)置:

1喻犁、如果沒有navigation bar, 直接設(shè)置

// make status bar background color

self.view.backgroundColor = COLOR_APP_MAIN;

2何缓、如果有navigation bar株汉, 在navigation bar 添加一個(gè)view來設(shè)置顏色。

// status bar color

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, -20, ScreenWidth, 20)];

[view setBackgroundColor:COLOR_APP_MAIN];

[viewController.navigationController.navigationBar addSubview:view];

三十五歌殃、NSDictionary 轉(zhuǎn) NSString

// Start

NSDictionary *parametersDic = [NSDictionary dictionaryWithObjectsAndKeys:

self.providerStr, KEY_LOGIN_PROVIDER,

token, KEY_TOKEN,

response, KEY_RESPONSE,

nil];

NSData *jsonData = parametersDic == nil ? nil : [NSJSONSerialization dataWithJSONObject:parametersDic options:0 error:nil];

NSString *requestBody = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];

將dictionary 轉(zhuǎn)化為 NSData乔妈, data 轉(zhuǎn)化為 string .

三十六、UIButton setImage 沒有起作用

如果在設(shè)置image 沒有生效氓皱。

那么說明UIButton的 enable 屬性沒有生效是NO的路召。 需要設(shè)置enable 為YES。

三十七波材、User-Agent 判斷設(shè)備

UIWebView 會(huì)根據(jù)User-Agent 的值來判斷需要顯示哪個(gè)界面股淡。

如果需要設(shè)置為全局,那么直接在應(yīng)用啟動(dòng)的時(shí)候加載廷区。

- (void)appendUserAgent

{

NSString *oldAgent = [self.WebView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];

NSString *newAgent = [oldAgent stringByAppendingString:@"這里為添加的自定義"];

NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys:

newAgent, @"UserAgent", nil];

[[NSUserDefaults standardUserDefaults] registerDefaults:dic];

}

三十八唯灵、UIPasteboard 屏蔽paste 選項(xiàng)

當(dāng)UIpasteboard的string 設(shè)置為@“” 時(shí),那么string會(huì)成為nil隙轻。 就不會(huì)出現(xiàn)paste的選項(xiàng)埠帕。

三十九、class_addMethod 使用

當(dāng) ARC 環(huán)境下

class_addMethod([self class], @selector(resolveThisMethodDynamically), (IMP) myMethodIMP, "v@:");

使用的時(shí)候@selector 需要使用super的class玖绿,不然會(huì)報(bào)錯(cuò)敛瓷。

當(dāng)MRC環(huán)境下

class_addMethod([EmptyClass class], @selector(sayHello2), (IMP)sayHello, "v@:");

可以任意定義。但是系統(tǒng)會(huì)出現(xiàn)警告斑匪,忽略警告就可以呐籽。

四十、AFNetworking 傳送 form-data

將JSON的數(shù)據(jù),轉(zhuǎn)化為NSData, 放入Request的body中狡蝶。 發(fā)送到服務(wù)器就是form-data格式庶橱。

四十一、非空判斷注意

BOOL hasBccCode = YES;

if ( nil == bccCodeStr

|| [bccCodeStr isKindOfClass:[NSNull class]]

|| [bccCodeStr isEqualToString:@""])

{

hasBccCode = NO;

}

四十二贪惹、UIAlertView 鍵盤顯示問題

可以在調(diào)用UIAlertView 之前進(jìn)行鍵盤是否已經(jīng)隱藏的判斷苏章。

@property (nonatomic, assign) BOOL hasShowdKeyboard;

[[NSNotificationCenter defaultCenter] addObserver:self

selector:@selector(showKeyboard)

name:UIKeyboardWillShowNotification

object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self

selector:@selector(dismissKeyboard)

name:UIKeyboardDidHideNotification

object:nil];

- (void)showKeyboard

{

self.hasShowdKeyboard = YES;

}

- (void)dismissKeyboard

{

self.hasShowdKeyboard = NO;

}

四十三、模擬器中文輸入法設(shè)置

模擬器默認(rèn)的配置種沒有“小地球”馍乙,只能輸入英文。加入中文方法如下:

選擇Settings--->General-->Keyboard-->International KeyBoards-->Add New Keyboard-->Chinese Simplified(PinYin) 即我們一般用的簡(jiǎn)體中文拼音輸入法垫释,配置好后丝格,再輸入文字時(shí),點(diǎn)擊彈出鍵盤上的“小地球”就可以輸入中文了棵譬。

如果不行显蝌,可以長(zhǎng)按“小地球”選擇中文。


四十四订咸、iPhone number pad

1曼尊、phone 的鍵盤類型:

number pad 只能輸入數(shù)字,不能切換到其他輸入



2脏嚷、phone pad 類型: 撥打電話的時(shí)候使用骆撇,可以輸入數(shù)字和 + * #


四十五、UIView 自帶動(dòng)畫翻轉(zhuǎn)界面

- (IBAction)changeImages:(id)sender

{

CGContextRef context = UIGraphicsGetCurrentContext();

[UIView beginAnimations:nil context:context];

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

[UIView setAnimationDuration:1.0];

[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:_parentView cache:YES];

[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:_parentView cache:YES];

[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:_parentView cache:YES];

[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:_parentView cache:YES];

NSInteger purple = [[_parentView subviews] indexOfObject:self.image1];

NSInteger maroon = [[_parentView subviews] indexOfObject:self.image2];

[_parentView exchangeSubviewAtIndex:purple withSubviewAtIndex:maroon];

[UIView setAnimationDelegate:self];

[UIView commitAnimations];

}

四十六父叙、KVO 監(jiān)聽其他類的變量

[[HXSLocationManager sharedManager] addObserver:self

forKeyPath:@"currentBoxEntry.boxCodeStr"

options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionOld context:nil];

在實(shí)現(xiàn)的類self中神郊,進(jìn)行[HXSLocationManager sharedManager]類中的變量@“currentBoxEntry.boxCodeStr” 監(jiān)聽。

四十七趾唱、ios9 crash animateWithDuration

在iOS9 中涌乳,如果進(jìn)行animateWithDuration 時(shí),view被release 那么會(huì)引起crash甜癞。

解決方法

[UIView animateWithDuration:0.25f

delay:0

usingSpringWithDamping:1.0

initialSpringVelocity:1.0 options:UIViewAnimationOptionCurveLinear

animations:^{

self.frame = selfFrame;

} completion:^(BOOL finished) {

[super removeFromSuperview];

}];

四十八夕晓、對(duì)NSString進(jìn)行URL編碼轉(zhuǎn)換

iPTV項(xiàng)目中在刪除影片時(shí),URL中需傳送用戶名與影片ID兩個(gè)參數(shù)悠咱。當(dāng)用戶名中帶中文字符時(shí)蒸辆,刪除失敗。

之前測(cè)試時(shí)析既,手機(jī)號(hào)綁定的用戶名是英文或數(shù)字吁朦。換了手機(jī)號(hào)測(cè)試時(shí)才發(fā)現(xiàn)這個(gè)問題。

對(duì)于URL中有中文字符的情況渡贾,需對(duì)URL進(jìn)行編碼轉(zhuǎn)換逗宜。

urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

四十九、Xcode iOS加載圖片只能用PNG

雖然在Xcode可以看到j(luò)pg的圖片,但是在加載的時(shí)候會(huì)失敗纺讲。

錯(cuò)誤為 Could not load the "ReversalImage1" image referenced from a nib in the bun

必須使用PNG的圖片擂仍。

如果需要使用JPG 需要添加后綴

[UIImage imageNamed:@"myImage.jpg"];

五十、保存全屏為image

CGSize imageSize = [[UIScreen mainScreen] bounds].size;

UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);

CGContextRef context = UIGraphicsGetCurrentContext();

for (UIWindow * window in [[UIApplication sharedApplication] windows]) {

if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen]) {

CGContextSaveGState(context);

CGContextTranslateCTM(context, [window center].x, [window center].y);

CGContextConcatCTM(context, [window transform]);

CGContextTranslateCTM(context, -[window bounds].size.width*[[window layer] anchorPoint].x, -[window bounds].size.height*[[window layer] anchorPoint].y);

[[window layer] renderInContext:context];

CGContextRestoreGState(context);

}

}

UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();


五十一熬甚、判斷定位狀態(tài) locationServicesEnabled

這個(gè)[CLLocationManager locationServicesEnabled]檢測(cè)的是整個(gè)iOS系統(tǒng)的位置服務(wù)開關(guān)逢渔,無法檢測(cè)當(dāng)前應(yīng)用是否被關(guān)閉。通過

CLAuthorizationStatus status = [CLLocationManager authorizationStatus];

if (kCLAuthorizationStatusDenied == status || kCLAuthorizationStatusRestricted == status) {

[self locationManager:self.locationManager didUpdateLocations:nil];

} else { // the user has closed this function

[self.locationManager startUpdatingLocation];

}CLAuthorizationStatus來判斷是否可以訪問GPS

五十二乡括、微信分享的時(shí)候注意大小

text 的大小必須 大于0 小于 10k肃廓;image 必須 小于 64k;url 必須 大于 0k

五十三诲泌、圖片緩存的清空

一般使用SDWebImage 進(jìn)行圖片的顯示和緩存盲赊,一般緩存的內(nèi)容比較多了就需要進(jìn)行清空緩存

清除SDWebImage的內(nèi)存和硬盤時(shí),可以同時(shí)清除session 和 cookie的緩存敷扫。

// 清理內(nèi)存

[[SDImageCache sharedImageCache] clearMemory];

// 清理webview 緩存

NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];

for (NSHTTPCookie *cookie in [storage cookies]) {

[storage deleteCookie:cookie];

}

NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];

[config.URLCache removeAllCachedResponses];

[[NSURLCache sharedURLCache] removeAllCachedResponses];

// 清理硬盤

[[SDImageCache sharedImageCache] clearDiskOnCompletion:^{

[MBProgressHUD hideAllHUDsForView:self.view animated:YES];

[self.tableView reloadData];

}];

五十四哀蘑、TableView Header View 跟隨Tableview 滾動(dòng)

當(dāng)tableview的類型為 plain的時(shí)候,header View 就會(huì)停留在最上面葵第。

當(dāng)類型為 group的時(shí)候绘迁,header view 就會(huì)跟隨tableview 一起滾動(dòng)了。

五十五卒密、TabBar的title 設(shè)置


在xib 或 storyboard 中可以進(jìn)行tabBar的設(shè)置


其中badge 是自帶的在圖標(biāo)上添加一個(gè)角標(biāo)缀台。

1. self.navigationItem.title 設(shè)置navigation的title 需要用這個(gè)進(jìn)行設(shè)置。

2. self.title 在tab bar的主VC 中哮奇,進(jìn)行設(shè)置self.title 會(huì)導(dǎo)致navigation 的title 和 tab bar的title一起被修改将硝。

五十六、UITabBar,移除頂部的陰影

添加這兩行代碼:

[[UITabBar appearance] setShadowImage:[[UIImage alloc] init]];

[[UITabBar appearance] setBackgroundImage:[[UIImage alloc] init]];

頂部的陰影是在UIWindow上的屏镊,所以不能簡(jiǎn)單的設(shè)置就去除依疼。

五十七、當(dāng)一行中而芥,多個(gè)UIKit 都是動(dòng)態(tài)的寬度設(shè)置


設(shè)置horizontal的值律罢,表示出現(xiàn)內(nèi)容很長(zhǎng)的時(shí)候,優(yōu)先壓縮這個(gè)UIKit棍丐。

// END

在iOS開發(fā)中經(jīng)常需要使用的或不常用的知識(shí)點(diǎn)的總結(jié)误辑,幾年的收藏和積累。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末歌逢,一起剝皮案震驚了整個(gè)濱河市巾钉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌秘案,老刑警劉巖砰苍,帶你破解...
    沈念sama閱讀 211,376評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件潦匈,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡赚导,警方通過查閱死者的電腦和手機(jī)茬缩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來吼旧,“玉大人凰锡,你說我怎么就攤上這事∪Π担” “怎么了掂为?”我有些...
    開封第一講書人閱讀 156,966評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)员串。 經(jīng)常有香客問我勇哗,道長(zhǎng),這世上最難降的妖魔是什么昵济? 我笑而不...
    開封第一講書人閱讀 56,432評(píng)論 1 283
  • 正文 為了忘掉前任智绸,我火速辦了婚禮野揪,結(jié)果婚禮上访忿,老公的妹妹穿的比我還像新娘。我一直安慰自己斯稳,他們只是感情好海铆,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評(píng)論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著挣惰,像睡著了一般卧斟。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上憎茂,一...
    開封第一講書人閱讀 49,792評(píng)論 1 290
  • 那天珍语,我揣著相機(jī)與錄音,去河邊找鬼竖幔。 笑死板乙,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的拳氢。 我是一名探鬼主播募逞,決...
    沈念sama閱讀 38,933評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼馋评!你這毒婦竟也來了放接?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,701評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤留特,失蹤者是張志新(化名)和其女友劉穎纠脾,沒想到半個(gè)月后玛瘸,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡乳乌,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評(píng)論 2 327
  • 正文 我和宋清朗相戀三年捧韵,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片汉操。...
    茶點(diǎn)故事閱讀 38,626評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡再来,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出磷瘤,到底是詐尸還是另有隱情芒篷,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評(píng)論 4 329
  • 正文 年R本政府宣布采缚,位于F島的核電站针炉,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏扳抽。R本人自食惡果不足惜篡帕,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望贸呢。 院中可真熱鬧镰烧,春花似錦、人聲如沸楞陷。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽固蛾。三九已至结执,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間艾凯,已是汗流浹背献幔。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留趾诗,地道東北人蜡感。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像沧竟,于是被迫代替她去往敵國和親铸敏。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容