在iOS開發中經常需要使用的或不常用的知識點的總結,幾年的收藏和積累(踩過的坑)。
一、 iPhone Size
手機型號 | 螢幕尺寸 |
---|---|
iPhone 4/4s | 320 * 480 |
iPhone 5/5s | 320 * 568 |
iPhone 6/6s 7 8 | 375 * 667 |
iPhone 6plus/6s plus/7 plus/8 plus | 414 * 736 |
iPhone X/Xs | 375 * 812 |
iPhone XR | 276 * 598 |
iPhone Xs Max | 414 * 896 |
二、 給navigation Bar 設定 title 顏色
UIColor *whiteColor = [UIColor whiteColor];
NSDictionary *dic = [NSDictionary dictionaryWithObject:whiteColor forKey:NSForegroundColorAttributeName];
[self.navigationController.navigationBar setTitleTextAttributes:dic];
複製程式碼
三、 如何把一個CGPoint存入陣列裡
CGPoint itemSprite1position = CGPointMake(100, 200);
NSMutableArray * array = [[NSMutableArray alloc] initWithObjects:NSStringFromCGPoint(itemSprite1position),nil];
// 從陣列中取值的過程是這樣的:
CGPoint point = CGPointFromString([array objectAtIndex:0]);
NSLog(@"point is %@.", NSStringFromCGPoint(point));
複製程式碼
可以用NSValue進行基礎資料的儲存,用這個方法更加清晰明確。
CGPoint itemSprite1position = CGPointMake(100, 200);
NSValue *originValue = [NSValue valueWithCGPoint:itemSprite1position];
NSMutableArray * array = [[NSMutableArray alloc] initWithObjects:originValue, nil];
// 從陣列中取值的過程是這樣的:
NSValue *currentValue = [array objectAtIndex:0];
CGPoint point = [currentValue CGPointValue];
NSLog(@"point is %@.", NSStringFromCGPoint(point));
複製程式碼
現在Xcode7後OC支援泛型了,可以用NSMutableArray<NSString *> *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進行設定.
NSString *string = @"美麗新世界";
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;
複製程式碼
六、兩點之間的距離
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開發-關閉/收起鍵盤方法總結
1、點選Return按扭時收起鍵盤
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
return [textField resignFirstResponder];
}
複製程式碼
2、點選背景View收起鍵盤
[self.view endEditing:YES];
複製程式碼
3、你可以在任何地方加上這句話,可以用來統一收起鍵盤
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];
複製程式碼
八、在使用 ImagesQA.xcassets 時需要注意
將圖片直接拖入image到ImagesQA.xcassets中時,圖片的名字會保留。 這個時候如果圖片的名字過長,那麼這個名字會存入到ImagesQA.xcassets中,名字過長會引起SourceTree判斷異常。
九、UIPickerView 判斷開始選擇到選擇結束
開始選擇的,需要在繼承UiPickerView,建立一個子類,在子類中過載
- (UIView*)hitTest:(CGPoint)point withEvent:(UIEvent*)event
複製程式碼
當[super hitTest:point withEvent:event]
返回不是nil的時候,說明是點選中UIPickerView中了。
結束選擇的, 實現UIPickerView的delegate方法
- (void)pickerView:(UIPickerView*)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
複製程式碼
當呼叫這個方法的時候,說明選擇已經結束了。
十、iOS模擬器 鍵盤事件
當iOS模擬器 選擇了Keybaord->Connect Hardware keyboard 後,不彈出鍵盤。
當程式碼中新增了
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillHide)
name:UIKeyboardWillHideNotification
object:nil];
複製程式碼
進行鍵盤事件的獲取。那麼在此情景下將不會呼叫- (void)keyboardWillHide
.
因為沒有鍵盤的隱藏和顯示。
十一、使用size classes後上面下面黑色
使用了size classes後,在ios7的模擬器上出現了上面和下面部分的黑色
可以在General->App Icons and Launch Images->Launch Images Source中設定Images.xcassets來解決。
十二、設定不同size在size classes
Font中設定不同的size classes。
十三、執行緒中更新 UILabel的text
[self.label1 performSelectorOnMainThread:@selector(setText:) withObject:textDisplay
waitUntilDone:YES];
複製程式碼
label1 為UILabel,當在子執行緒中,需要進行text的更新的時候,可以使用這個方法來更新。 其他的UIView 也都是一樣的。
十四、使用UIScrollViewKeyboardDismissMode實現了Message app的行為
像Messages app一樣在滾動的時候可以讓鍵盤消失是一種非常好的體驗。然而,將這種行為整合到你的app很難。幸運的是,蘋果給UIScrollView新增了一個很好用的屬性keyboardDismissMode,這樣可以方便很多。
現在僅僅只需要在Storyboard中改變一個簡單的屬性,或者增加一行程式碼,你的app可以和辦到和Messages app一樣的事情了。
這個屬性使用了新的UIScrollViewKeyboardDismissMode enum列舉型別。這個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);
複製程式碼
以下是讓鍵盤可以在滾動的時候消失需要設定的屬性:
十五、報錯 "_sqlite3_bind_blob", referenced from:
將 sqlite3.dylib載入到framework
十六、statusbar 文字顏色
預設status bar字型顏色是黑色的,要修改為白色的需要在infoPlist裡設定UIViewControllerBasedStatusBarAppearance為NO,然後在程式碼裡新增:
[application setStatusBarStyle:UIStatusBarStyleLightContent];
十七、獲得當前硬碟空間
NSFileManager *fm = [NSFileManager defaultManager];
NSDictionary *fattributes = [fm attributesOfFileSystemForPath:NSHomeDirectory() error:nil];
NSLog(@"容量%lldG",[[fattributes objectForKey:NSFileSystemSize] longLongValue]/1000000000);
NSLog(@"可用%lldG",[[fattributes objectForKey:NSFileSystemFreeSize] longLongValue]/1000000000);
複製程式碼
十八、給UIView 設定透明度,不影響其他sub views
UIView設定了alpha值,但其中的內容也跟著變透明。有沒有解決辦法?
設定background color的顏色中的透明度
比如:
[self.testView setBackgroundColor:[UIColor colorWithRed:0.0 green:1.0 blue:1.0 alpha:0.5]];
複製程式碼
設定了color的alpha, 就可以實現背景色有透明度,當其他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轉為UIImage
//將color轉為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];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
複製程式碼
在NSRunLoop 中新增定時器.
二十一、Bundle identifier 應用標示符
Bundle identifier 是應用的標示符,表明應用和其他APP的區別。
二十二、NSDate 獲取幾年前的時間
eg. 獲取到40年前的日期
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
[dateComponents setYear:-40];
self.birthDate = [gregorian dateByAddingComponents:dateComponents toDate:[NSDate date] options:0];
複製程式碼
二十三、iOS載入啟動圖的時候隱藏statusbar
只需需要在info.plist中加入Status bar is initially hidden 設定為YES就好
二十四、iOS 開發,工程中混合使用 ARC 和非ARC
Xcode 專案中我們可以使用 ARC 和非 ARC 的混合模式。
如果你的專案使用的非 ARC 模式,則為 ARC 模式的程式碼檔案加入 -fobjc-arc 標籤。
如果你的專案使用的是 ARC 模式,則為非 ARC 模式的程式碼檔案加入 -fno-objc-arc 標籤。
新增標籤的方法:
- 開啟:你的target -> Build Phases -> Compile Sources.
- 雙擊對應的 *.m 檔案
- 在彈出視窗中輸入上面提到的標籤 -fobjc-arc / -fno-objc-arc
- 點選 done 儲存
二十五、boundingRectWithSize:options:attributes:context:計算文字尺寸的使用
之前使用了NSString類的sizeWithFont:constrainedToSize:lineBreakMode:方法,但是該方法已經被iOS7 Deprecated了,而iOS7新出了一個boudingRectWithSize:options:attributes:context方法來代替。 而具體怎麼使用呢,尤其那個attribute
NSDictionary *attribute = @{NSFontAttributeName: [UIFont systemFontOfSize:13]};
CGSize size = [@"相關NSString" boundingRectWithSize:CGSizeMake(100, 0) options: NSStringDrawingTruncatesLastVisibleLine | NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:attribute context:nil].size;
複製程式碼
二十六、NSDate使用 注意
NSDate 在儲存資料,傳輸資料中,一般最好使用UTC時間。
在顯示到介面給使用者看的時候,需要轉換為本地時間。
二十七、在UIViewController中property的一個UIViewController的Present問題
如果在一個UIViewController A中有一個property屬性為UIViewController B,例項化後,將BVC.view 新增到主UIViewController A.view上,如果在viewB上進行 - (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag completion:(void (^)(void))completion NS_AVAILABLE_IOS(5_0);
的操作將會出現,“ **Presenting view controllers on detached view controllers is discouraged **” 的問題。
以為BVC已經present到AVC中了,所以再一次進行會出現錯誤。
可以使用
[self.view.window.rootViewController presentViewController:imagePicker
animated:YES
completion:^{
NSLog(@"Finished");
}];
複製程式碼
來解決。
二十八、UITableViewCell indentationLevel 使用
UITableViewCell 屬性 NSInteger indentationLevel 的使用, 對cell設定 indentationLevel的值,可以將cell 分級別。
還有 CGFloat indentationWidth; 屬性,設定縮排的寬度。
總縮排的寬度: indentationLevel * indentationWidth
二十九、ActivityViewController 使用AirDrop分享
使用AirDrop 進行分享:
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
這樣進行點語法獲取。
還可以使用CGRectGetHeight(self.createNewMessageTableView.frame)
進行直接獲取。
除了這個方法還有 func CGRectGetWidth(rect: CGRect) -> CGFloat
等等簡單地方法
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,如果用到了就會被顯示出來。
三十三、APP 遮蔽 觸發事件
// Disable user interaction when download finishes
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
複製程式碼
三十四、設定Status bar顏色
status bar的顏色設定:
- 如果沒有navigation bar, 直接設定
// make status bar background color
self.view.backgroundColor = COLOR_APP_MAIN;
複製程式碼
- 如果有navigation bar, 在navigation bar 新增一個view來設定顏色。
// status bar color
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, -20, ScreenWidth, 20)];
[view setBackgroundColor:COLOR_APP_MAIN];
[viewController.navigationController.navigationBar addSubview:view];
複製程式碼
三十五、NSDictionary 轉 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 轉化為 NSData, data 轉化為 string .
三十六、中UIButton setImage 沒有起作用
如果進行設定image 沒有生效。
那麼說明UIButton的 enable 屬性沒有生效是NO的。 需要設定enable 為YES。
三十七、User-Agent 判斷裝置
UIWebView 會根據User-Agent 的值來判斷需要顯示哪個介面。 如果需要設定為全域性,那麼直接在應用啟動的時候載入。
- (void)appendUserAgent
{
NSString *oldAgent = [self.WebView stringByEvaluatingJavaScriptFromString:@"navigator.userAgent"];
NSString *newAgent = [oldAgent stringByAppendingString:@"iOS"];
NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys:
newAgent, @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:dic];
}
複製程式碼
@“iOS" 為新增的自定義。
三十八、UIPasteboard 遮蔽paste 選項
當UIpasteboard的string 設定為@“” 時,那麼string會成為nil。 就不會出現paste的選項。
三十九、class_addMethod 使用
當 ARC 環境下
class_addMethod([self class], @selector(resolveThisMethodDynamically), (IMP) myMethodIMP, "v@:");
使用的時候@selector 需要使用super的class,不然會報錯。 當MRC環境下
class_addMethod([EmptyClass class], @selector(sayHello2), (IMP)sayHello, "v@:");
可以任意定義。但是系統會出現警告,忽略警告就可以。
四十、AFNetworking 傳送 form-data
將JSON的資料,轉化為NSData, 放入Request的body中。 傳送到伺服器就是form-data格式。
四十一、非空判斷注意
BOOL hasBccCode = YES;
if ( nil == bccCodeStr
|| [bccCodeStr isKindOfClass:[NSNull class]]
|| [bccCodeStr isEqualToString:@""])
{
hasBccCode = NO;
}
複製程式碼
如果進行非空判斷和型別判斷時,需要新進行型別判斷,再進行非空判斷,不然會crash。
四十二、iOS 8.4 UIAlertView 鍵盤顯示問題
可以在呼叫UIAlertView 之前進行鍵盤是否已經隱藏的判斷。
@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;
}
while ( self.hasShowdKeyboard )
{
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
UIAlertView* alerview = [[UIAlertView alloc] initWithTitle:@"" message:@"取消修改?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles: @"確定", nil];
[alerview show];
複製程式碼
四十三、模擬器中文輸入法設定
模擬器預設的配置種沒有“小地球”,只能輸入英文。加入中文方法如下:
選擇Settings--->General-->Keyboard-->International KeyBoards-->Add New Keyboard-->Chinese Simplified(PinYin) 即我們一般用的簡體中文拼音輸入法,配置好後,再輸入文字時,點選彈出鍵盤上的“小地球”就可以輸入中文了。 如果不行,可以長按“小地球”選擇中文。
四十四、iPhone number pad
phone 的鍵盤型別:
- number pad 只能輸入數字,不能切換到其他輸入
- phone pad 型別: 撥打電話的時候使用,可以輸入數字和 + * #
四十五、UIView 自帶動畫翻轉介面
- (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 監聽其他類的變數
[[HXSLocationManager sharedManager] addObserver:self
forKeyPath:@"currentBoxEntry.boxCodeStr"
options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionOld context:nil];
複製程式碼
在實現的類self中,進行[HXSLocationManager sharedManager]類中的變數@“currentBoxEntry.boxCodeStr” 監聽。
四十七、ios9 crash animateWithDuration
在iOS9 中,如果進行animateWithDuration 時,view被release 那麼會引起crash。
[UIView animateWithDuration:0.25f animations:^{
self.frame = selfFrame;
} completion:^(BOOL finished) {
if (finished) {
[super removeFromSuperview];
}
}];
複製程式碼
會crash。
[UIView animateWithDuration:0.25f
delay:0
usingSpringWithDamping:1.0
initialSpringVelocity:1.0 options:UIViewAnimationOptionCurveLinear
animations:^{
self.frame = selfFrame;
} completion:^(BOOL finished) {
[super removeFromSuperview];
}];
複製程式碼
不會Crash。
四十八、對NSString進行URL編碼轉換
iPTV專案中在刪除影片時,URL中需傳送使用者名稱與影片ID兩個引數。當使用者名稱中帶中文字元時,刪除失敗。
之前測試時,手機號繫結的使用者名稱是英文或數字。換了手機號測試時才發現這個問題。
對於URL中有中文字元的情況,需對URL進行編碼轉換。
urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
複製程式碼
如果最低版本是iOS9那麼使用
urlStr = [urlStr stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
複製程式碼
四十九、Xcode iOS載入圖片只能用PNG
雖然在Xcode可以看到jpg的圖片,但是在載入的時候會失敗。 錯誤為 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();
複製程式碼
五十一、判斷定位狀態 locationServicesEnabled
這個[CLLocationManager locationServicesEnabled]檢測的是整個iOS系統的位置服務開關,無法檢測當前應用是否被關閉。通過
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
五十二、微信分享的時候注意大小
text 的大小必須 大於0 小於 10k
image 必須 小於 64k
url 必須 大於 0k
五十三、圖片快取的清空
一般使用SDWebImage 進行圖片的顯示和快取,一般快取的內容比較多了就需要進行清空快取
清除SDWebImage的記憶體和硬碟時,可以同時清除session 和 cookie的快取。
// 清理記憶體
[[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 滾動
當tableview的型別為 plain的時候,header View 就會停留在最上面。
當型別為 group的時候,header view 就會跟隨tableview 一起滾動了。
五十五、TabBar的title 設定
在xib 或 storyboard 中可以進行tabBar的設定
其中badge 是自帶的在圖示上新增一個角標。1. self.navigationItem.title 設定navigation的title 需要用這個進行設定。
2. self.title 在tab bar的主VC 中,進行設定self.title 會導致navigation 的title 和 tab bar的title一起被修改。
五十六、UITabBar,移除頂部的陰影
新增這兩行程式碼:
[[UITabBar appearance] setShadowImage:[[UIImage alloc] init]];
[[UITabBar appearance] setBackgroundImage:[[UIImage alloc] init]];
複製程式碼
頂部的陰影是在UIWindow上的,所以不能簡單的設定就去除。
五十七、當一行中,多個UIKit 都是動態的寬度設定
設定horizontal的值,表示出現內容很長的時候,優先壓縮這個UIKit。五十八、JSON的“” 轉換為nil
使用AFNetworking 時, 使用
AFJSONResponseSerializer *response = [[AFJSONResponseSerializer alloc] init];
response.removesKeysWithNullValues = YES;
_sharedClient.responseSerializer = response;
複製程式碼
這個引數 removesKeysWithNullValues 可以將null的值刪除,那麼就Value為nil了
// END 很好之前整理的,希望知識點沒有過時