ios 常用的一些方法和注意點 componentsSeparatedByString componentsJoinedByString以及NSURl和NSURLComponents
將string字串轉換為array陣列
NSArray *array = [Str componentsSeparatedByString:@","];
注意://componentsSeparatedByString 這個方法有一個bug 當被切割的字串是 @“” 時 切割後 返回的 陣列長度為1 元素為 @“”
反向方法
將array陣列轉換為string字串
NSString *tempString = [mutableArray componentsJoinedByString:@","];--分隔符
在圖片載入過大而導致效能卡頓延時,解決辦法?
1.壓縮為jpeg格式,jpeg比png的要小很多
伺服器根據resize_200x200來通知客戶端所需要處理的圖片大小,來設定image的大小
NSUrl有的引數
@property (nullable, readonly, copy) NSString *scheme;
@property (nullable, readonly, copy) NSString *resourceSpecifier;
@property (nullable, readonly, copy) NSString *host;
@property (nullable, readonly, copy) NSNumber *port;
@property (nullable, readonly, copy) NSString *user;
@property (nullable, readonly, copy) NSString *password;
@property (nullable, readonly, copy) NSString *path;
@property (nullable, readonly, copy) NSString *fragment;
@property (nullable, readonly, copy) NSString *parameterString;
@property (nullable, readonly, copy) NSString *query;
@property (nullable, readonly, copy) NSString *relativePath;
NSURLComponents
該類蘋果在 iOS 7中新增,它(NSURLComponents)可以方便的把 URL 地址分解成多個部分;
其中, URL(Uniform Resource Locator)地址用於描述一個網路上的資源,基本格式如下:
schema://host[:port#]/path/.../[?query-string][#anchor]
schema:指定低層使用的協議,例如 http https ftp 等
host:HTTP 伺服器的 IP 地址或者域名
port#:HTTP 伺服器的預設埠是80,該情況下埠號可以省略.如果使用其它埠,必須將其指明(http://www.cnblogs.com:8080/)
path:訪問資源的路徑
query-string:傳送給 http 伺服器的資料
anchor: 錨
例如:
if (!name || [name isEqualToString:@""]) {
return nil;
}
NSURLComponents *components = [NSURLComponents componentsWithURL:self resolvingAgainstBaseURL:YES];
if (!components.queryItems) return nil;
for (NSURLQueryItem *item in components.queryItems) {
if ([item.name isEqualToString:name]) {
return item.value;
}
}
這些都非常好用的,其實蘋果好多介面我們都很少用到,多接觸也就好了