欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

詳解iOS應(yīng)用UI開發(fā)中的九宮格坐標(biāo)計(jì)算與字典轉(zhuǎn)換模型

 更新時(shí)間:2016年01月07日 09:03:52   作者:文頂頂  
這篇文章主要介紹了iOS應(yīng)用UI開發(fā)中的九宮格坐標(biāo)計(jì)算與字典轉(zhuǎn)換模型,代碼基于傳統(tǒng)的Objective-C,需要的朋友可以參考下

九宮格坐標(biāo)計(jì)算

一、要求

完成下面的布局

20161790120507.png (624×340)

二、分析

尋找左邊的規(guī)律,每一個(gè)uiview的x坐標(biāo)和y坐標(biāo)。

20161790146059.png (631×381)

三、實(shí)現(xiàn)思路

(1)明確每一塊用得是什么view

(2)明確每個(gè)view之間的父子關(guān)系,每個(gè)視圖都只有一個(gè)父視圖,擁有很多的子視圖。

(3)可以先嘗試逐個(gè)的添加格子,最后考慮使用for循環(huán),完成所有uiview的創(chuàng)建

(4)加載app數(shù)據(jù),根據(jù)數(shù)據(jù)長度創(chuàng)建對應(yīng)個(gè)數(shù)的格子

(5)添加格子內(nèi)部的子控件

(6)給內(nèi)部的子控件裝配數(shù)據(jù)

四、代碼示例

復(fù)制代碼 代碼如下:

//
//  YYViewController.m
//  九宮格練習(xí)
//
//  Created by 孔醫(yī)己 on 14-5-22.
//  Copyright (c) 2014年 itcast. All rights reserved.
//

#import "YYViewController.h"

@interface YYViewController ()
@property(nonatomic,strong)NSArray *apps;
@end


復(fù)制代碼 代碼如下:

@implementation YYViewController
//1.加載數(shù)據(jù)
- (NSArray *)apps
{
    if (!_apps) {
        NSString *path=[[NSBundle mainBundle]pathForResource:@"app.plist" ofType:nil];
        _apps=[NSArray arrayWithContentsOfFile:path];
    }
    return _apps;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSLog(@"%d",self.apps.count);
   
    //2.完成布局設(shè)計(jì)
   
    //三列
    int totalloc=3;
    CGFloat appvieww=80;
    CGFloat appviewh=90;
   
    CGFloat margin=(self.view.frame.size.width-totalloc*appvieww)/(totalloc+1);
    int count=self.apps.count;
    for (int i=0; i<count; i++) {
        int row=i/totalloc;//行號
        //1/3=0,2/3=0,3/3=1;
        int loc=i%totalloc;//列號
       
        CGFloat appviewx=margin+(margin+appvieww)*loc;
        CGFloat appviewy=margin+(margin+appviewh)*row;
       
       
        //創(chuàng)建uiview控件
        UIView *appview=[[UIView alloc]initWithFrame:CGRectMake(appviewx, appviewy, appvieww, appviewh)];
        //[appview setBackgroundColor:[UIColor purpleColor]];
        [self.view addSubview:appview];
       
       
        //創(chuàng)建uiview控件中的子視圖
        UIImageView *appimageview=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 80, 50)];
        UIImage *appimage=[UIImage imageNamed:self.apps[i][@"icon"]];
        appimageview.image=appimage;
        [appimageview setContentMode:UIViewContentModeScaleAspectFit];
       // NSLog(@"%@",self.apps[i][@"icon"]);
        [appview addSubview:appimageview];
       
        //創(chuàng)建文本標(biāo)簽
        UILabel *applable=[[UILabel alloc]initWithFrame:CGRectMake(0, 50, 80, 20)];
        [applable setText:self.apps[i][@"name"]];
        [applable setTextAlignment:NSTextAlignmentCenter];
        [applable setFont:[UIFont systemFontOfSize:12.0]];
        [appview addSubview:applable];
       
        //創(chuàng)建按鈕
        UIButton *appbtn=[UIButton buttonWithType:UIButtonTypeCustom];
        appbtn.frame= CGRectMake(10, 70, 60, 20);
        [appbtn setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
        [appbtn setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
        [appbtn setTitle:@"下載" forState:UIControlStateNormal];
        appbtn.titleLabel.font=[UIFont systemFontOfSize:12.0];
        [appview addSubview:appbtn];
       
        [appbtn addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
    }

}

-(void)click
{
    //動畫標(biāo)簽
    UILabel *animalab=[[UILabel alloc]initWithFrame:CGRectMake(self.view.center.x-100, self.view.center.y+20, 200, 40)];
    [animalab setText:@"下載成功"];
    animalab.font=[UIFont systemFontOfSize:12.0];
    [animalab setBackgroundColor:[UIColor brownColor]];
    [animalab setAlpha:0];
    [self.view addSubview:animalab];
   
//    [UIView beginAnimations:Nil context:Nil];
//    [animalab setAlpha:1];
//    [UIView setAnimationDuration:4.0];
//    [UIView commitAnimations];
   
    //執(zhí)行完之后,還得把這給刪除了,推薦使用block動畫
   
    [UIView animateWithDuration:4.0 animations:^{
    [animalab setAlpha:1];
    } completion:^(BOOL finished) {
        //[self.view re];
    }];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

@end


執(zhí)行效果:

20161790233264.png (640×960)

字典轉(zhuǎn)模型

一、能完成功能的“問題代碼”

1.從plist中加載的數(shù)據(jù)

20161790258703.png (799×290)

2.實(shí)現(xiàn)的代碼

復(fù)制代碼 代碼如下:

//
//  LFViewController.m
//  03-應(yīng)用管理
//
//  Created by apple on 14-5-22.
//  Copyright (c) 2014年 heima. All rights reserved.
//

#import "LFViewController.h"

@interface LFViewController ()
@property (nonatomic, strong) NSArray *appList;
@end

@implementation LFViewController

- (NSArray *)appList
{
    if (!_appList) {

        // 1. 從mainBundle加載
        NSBundle *bundle = [NSBundle mainBundle];
        NSString *path = [bundle pathForResource:@"app.plist" ofType:nil];
        _appList = [NSArray arrayWithContentsOfFile:path];
       
        NSLog(@"%@", _appList);
    }
    return _appList;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
   
    // 總共有3列
    int totalCol = 3;
    CGFloat viewW = 80;
    CGFloat viewH = 90;
   
    CGFloat marginX = (self.view.bounds.size.width - totalCol * viewW) / (totalCol + 1);
    CGFloat marginY = 10;
    CGFloat startY = 20;
   
    for (int i = 0; i < self.appList.count; i++) {

        int row = i / totalCol;
        int col = i % totalCol;
       
        CGFloat x = marginX + (viewW + marginX) * col;
        CGFloat y = startY + marginY + (viewH + marginY) * row;
       
        UIView *appView = [[UIView alloc] initWithFrame:CGRectMake(x, y, viewW, viewH)];
     
        [self.view addSubview:appView];
       
        // 創(chuàng)建appView內(nèi)部的細(xì)節(jié)
        // 0> 讀取數(shù)組中的字典
        NSDictionary *dict = self.appList[i];
       
        // 1> UIImageView
        UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, viewW, 50)];
        imageView.image = [UIImage imageNamed:dict[@"icon"]];
        imageView.contentMode = UIViewContentModeScaleAspectFit;
        [appView addSubview:imageView];
       
        // 2> UILabel
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, imageView.bounds.size.height, viewW, 20)];
        // 設(shè)置文字
        label.text = dict[@"name"];
        label.font = [UIFont systemFontOfSize:12.0];
        label.textAlignment = NSTextAlignmentCenter;
       
        [appView addSubview:label];
       
        // 3> UIButton
        // UIButtonTypeCustom和[[UIButton alloc] init]是等價(jià)的
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(15, 70, viewW - 30, 20);
       
        [button setTitle:@"下載" forState:UIControlStateNormal];
        // *** 不能使用如下代碼直接設(shè)置title
//        button.titleLabel.text = @"下載";
        // @property中readonly表示不允許修改對象的指針地址,但是可以修改對象的屬性
        button.titleLabel.font= [UIFont systemFontOfSize:14.0];
       
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
       
        [appView addSubview:button];
    }
}

@end


3.實(shí)現(xiàn)效果

20161790318670.png (322×499)

4.代碼問題

在上述代碼的第62,69行,我們是直接通過字典的鍵名獲取plist中的數(shù)據(jù)信息,在viewController中需要直接和數(shù)據(jù)打交道,如果需要多次使用可能會因?yàn)椴恍⌒陌焰I名寫錯,而程序并不報(bào)錯。鑒于此,可以考慮把字典數(shù)據(jù)轉(zhuǎn)換成一個(gè)模型,把數(shù)據(jù)封裝到一個(gè)模型中去,讓viewController不再直接和數(shù)據(jù)打交道,而是和模型交互。

一般情況下,設(shè)置數(shù)據(jù)和取出數(shù)據(jù)都使用“字符串類型的key”,編寫這些key時(shí),編輯器沒有智能提示,需要手敲。如:

復(fù)制代碼 代碼如下:

dict[@"name"] = @"Jack";

NSString *name = dict[@"name"];


手敲字符串key,key容易寫錯

Key如果寫錯了,編譯器不會有任何警告和報(bào)錯,造成設(shè)錯數(shù)據(jù)或者取錯數(shù)據(jù)

二、字典轉(zhuǎn)模型

1.字典轉(zhuǎn)模型介紹

示意圖:

20161790336706.png (683×340)

字典轉(zhuǎn)模型的好處:

(1)降低代碼的耦合度

(2)所有字典轉(zhuǎn)模型部分的代碼統(tǒng)一集中在一處處理,降低代碼出錯的幾率

(3)在程序中直接使用模型的屬性操作,提高編碼效率

(4)調(diào)用方不用關(guān)心模型內(nèi)部的任何處理細(xì)節(jié)

字典轉(zhuǎn)模型的注意點(diǎn):

模型應(yīng)該提供一個(gè)可以傳入字典參數(shù)的構(gòu)造方法

復(fù)制代碼 代碼如下:

- (instancetype)initWithDict:(NSDictionary *)dict;

+ (instancetype)xxxWithDict:(NSDictionary *)dict;


提示:在模型中合理地使用只讀屬性,可以進(jìn)一步降低代碼的耦合度。

 

 2.代碼示例(一)

新建一個(gè)類,用來作為數(shù)據(jù)模型

復(fù)制代碼 代碼如下:

viewController.m文件代碼(字典轉(zhuǎn)模型)
#import "LFViewController.h"
#import "LFAppInfo.h"

@interface LFViewController ()
@property (nonatomic, strong) NSArray *appList;
@end

@implementation LFViewController

// 字典轉(zhuǎn)模型
- (NSArray *)appList
{
    if (!_appList) {
        // 1. 從mainBundle加載
        NSBundle *bundle = [NSBundle mainBundle];
        NSString *path = [bundle pathForResource:@"app.plist" ofType:nil];
//        _appList = [NSArray arrayWithContentsOfFile:path];
       
        NSArray *array = [NSArray arrayWithContentsOfFile:path];
        // 將數(shù)組轉(zhuǎn)換成模型,意味著self.appList中存儲的是LFAppInfo對象
        // 1. 遍歷數(shù)組,將數(shù)組中的字典依次轉(zhuǎn)換成AppInfo對象,添加到一個(gè)臨時(shí)數(shù)組
        // 2. self.appList = 臨時(shí)數(shù)組

        NSMutableArray *arrayM = [NSMutableArray array];
        for (NSDictionary *dict in array) {
           //用字典來實(shí)例化對象的工廠方法
            [arrayM addObject:[LFAppInfo appInfoWithDict:dict]];
        }
       
        _appList = arrayM;
    }
    return _appList;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
   
    // 總共有3列
    int totalCol = 3;
    CGFloat viewW = 80;
    CGFloat viewH = 90;
   
    CGFloat marginX = (self.view.bounds.size.width - totalCol * viewW) / (totalCol + 1);
    CGFloat marginY = 10;
    CGFloat startY = 20;
   
    for (int i = 0; i < self.appList.count; i++) {

        int row = i / totalCol;
        int col = i % totalCol;
       
        CGFloat x = marginX + (viewW + marginX) * col;
        CGFloat y = startY + marginY + (viewH + marginY) * row;
       
        UIView *appView = [[UIView alloc] initWithFrame:CGRectMake(x, y, viewW, viewH)];
       
        [self.view addSubview:appView];
       
        // 創(chuàng)建appView內(nèi)部的細(xì)節(jié)
        // 0> 讀取數(shù)組中的AppInfo
//        NSDictionary *dict = self.appList[i];
        LFAppInfo *appInfo = self.appList[i];
       
        // 1> UIImageView
        UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, viewW, 50)];
        imageView.image = appInfo.image;
        imageView.contentMode = UIViewContentModeScaleAspectFit;
       
        [appView addSubview:imageView];
       
        // 2> UILabel
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, imageView.bounds.size.height, viewW, 20)];
        // 設(shè)置文字
        label.text = appInfo.name;
        label.font = [UIFont systemFontOfSize:12.0];
        label.textAlignment = NSTextAlignmentCenter;
       
        [appView addSubview:label];
       
        // 3> UIButton
        // UIButtonTypeCustom和[[UIButton alloc] init]是等價(jià)的
        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame = CGRectMake(15, 70, viewW - 30, 20);
       
        [button setTitle:@"下載" forState:UIControlStateNormal];
        button.titleLabel.font= [UIFont systemFontOfSize:14.0];
       
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen"] forState:UIControlStateNormal];
        [button setBackgroundImage:[UIImage imageNamed:@"buttongreen_highlighted"] forState:UIControlStateHighlighted];
       
        [appView addSubview:button];
        button.tag = i;
       
        [button addTarget:self action:@selector(downloadClick:) forControlEvents:UIControlEventTouchUpInside];
    }
}

- (void)downloadClick:(UIButton *)button
{
    NSLog(@"%d", button.tag);
    // 實(shí)例化一個(gè)UILabel顯示在視圖上,提示用戶下載完成
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(80, 400, 160, 40)];
    label.textAlignment = NSTextAlignmentCenter;
    label.backgroundColor = [UIColor lightGrayColor];
   
    LFAppInfo *appInfo = self.appList[button.tag];
    label.text = [NSString stringWithFormat:@"下載%@完成", appInfo.name];
    label.font = [UIFont systemFontOfSize:13.0];
    label.alpha = 1.0;
    [self.view addSubview:label];
   
    // 動畫效果
    // 動畫效果完成之后,將Label從視圖中刪除
    // 首尾式動畫,只能做動畫,要處理完成后的操作不方便
//    [UIView beginAnimations:nil context:nil];
//    [UIView setAnimationDuration:1.0];
//    label.alpha = 1.0;
//    [UIView commitAnimations];

    // block動畫比首尾式動畫簡單,而且能夠控制動畫結(jié)束后的操作
    // 在iOS中,基本都使用首尾式動畫
    [UIView animateWithDuration:2.0 animations:^{
        label.alpha = 0.0;
    } completion:^(BOOL finished) {
        // 刪除label
        [label removeFromSuperview];
    }];
}

@end


模型.h文件代碼
復(fù)制代碼 代碼如下:

#import <Foundation/Foundation.h>

@interface LFAppInfo : NSObject

// 應(yīng)用程序名稱
@property (nonatomic, copy) NSString *name;
// 應(yīng)用程序圖標(biāo)名稱
@property (nonatomic, copy) NSString *icon;

// 圖像
// 定義屬性時(shí),會生成getter&setter方法,還會生成一個(gè)帶下劃線的成員變量
// 如果是readonly屬性,只會生成getter方法,同時(shí)沒有成員變量
@property (nonatomic, strong, readonly) UIImage *image;

// instancetype會讓編譯器檢查實(shí)例化對象的準(zhǔn)確類型
// instancetype只能用于返回類型,不能當(dāng)做參數(shù)使用

- (instancetype)initWithDict:(NSDictionary *)dict;
/** 工廠方法 */
+ (instancetype)appInfoWithDict:(NSDictionary *)dict;

@end


模型.m文件數(shù)據(jù)處理代碼
復(fù)制代碼 代碼如下:

#import "LFAppInfo.h"

@interface LFAppInfo()
{
    UIImage *_imageABC;
}
@end


復(fù)制代碼 代碼如下:

@implementation LFAppInfo

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.name = dict[@"name"];
        self.icon = dict[@"icon"];
    }
    return self;
}

+ (instancetype)appInfoWithDict:(NSDictionary *)dict
{
    return [[self alloc] initWithDict:dict];
}

- (UIImage *)image
{
    if (!_imageABC) {
        _imageABC = [UIImage imageNamed:self.icon];
    }
    return _imageABC;
}

@end


3.代碼示例(二)

數(shù)據(jù)信息:plist文件

20161790400641.png (763×667)

字典轉(zhuǎn)模型(初步)

模型.h文件

復(fù)制代碼 代碼如下:

#import <Foundation/Foundation.h>

@interface LFQuestion : NSObject

@property (nonatomic, copy) NSString *answer;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *icon;
@property (nonatomic, strong) NSArray *options;

@property (nonatomic, strong) UIImage *image;

/** 用字典實(shí)例化對象的成員方法 */
- (instancetype)initWithDict:(NSDictionary *)dict;
/** 用字典實(shí)例化對象的類方法,又稱工廠方法 */
+ (instancetype)questionWithDict:(NSDictionary *)dict;
@end


模型.m文件
復(fù)制代碼 代碼如下:

#import "LFQuestion.h"

@implementation LFQuestion

+ (instancetype)questionWithDict:(NSDictionary *)dict
{
    return [[self alloc] initWithDict:dict];
}

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.answer = dict[@"answer"];
        self.icon = dict[@"icon"];
        self.title = dict[@"title"];
        self.options = dict[@"options"];

        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}

viewController.m文件中的數(shù)據(jù)處理

- (NSArray *)questions
{
    if (!_questions) {
   
        NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"questions.plist" ofType:nil]];
       
        NSMutableArray *arrayM = [NSMutableArray array];
       
        for (NSDictionary *dict in array) {
            [arrayM addObject:[LFQuestion questionWithDict:dict]];
        }
        _questions=arrayM;
    }
    return _questions;
}


字典轉(zhuǎn)模型(優(yōu)化)

上面代碼可以做進(jìn)一步的優(yōu)化,從plist文件中讀取數(shù)據(jù)是可以交給模型去處理的,優(yōu)化后代碼如下:

模型.h文件

復(fù)制代碼 代碼如下:

#import <Foundation/Foundation.h>

@interface LFQuestion : NSObject

@property (nonatomic, copy) NSString *answer;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *icon;
@property (nonatomic, strong) NSArray *options;

@property (nonatomic, strong) UIImage *image;

/** 用字典實(shí)例化對象的成員方法 */
- (instancetype)initWithDict:(NSDictionary *)dict;
/** 用字典實(shí)例化對象的類方法,又稱工廠方法 */
+ (instancetype)questionWithDict:(NSDictionary *)dict;

/** 從plist加載對象數(shù)組 */
+ (NSArray *)questions;

@end


模型.m文件
復(fù)制代碼 代碼如下:

#import "LFQuestion.h"

@implementation LFQuestion

+ (instancetype)questionWithDict:(NSDictionary *)dict
{
    return [[self alloc] initWithDict:dict];
}

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        self.answer = dict[@"answer"];
        self.icon = dict[@"icon"];
        self.title = dict[@"title"];
        self.options = dict[@"options"];
       
        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}


+ (NSArray *)questions
{
    NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"questions.plist" ofType:nil]];
   
    NSMutableArray *arrayM = [NSMutableArray array];
   
    for (NSDictionary *dict in array) {
        [arrayM addObject:[LFQuestion questionWithDict:dict]];
    }
   
    return arrayM;
}
@end


viewController.m文件中的數(shù)據(jù)處理代碼部分
復(fù)制代碼 代碼如下:

- (NSArray *)questions
{
    if (!_questions) {
        _questions = [LFQuestion questions];
    }
    return _questions;
}

補(bǔ)充內(nèi)容:(KVC)的使用

(1)在模型內(nèi)部的數(shù)據(jù)處理部分,可以使用鍵值編碼來進(jìn)行處理

復(fù)制代碼 代碼如下:

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
//        self.answer = dict[@"answer"];
//        self.icon = dict[@"icon"];
//        self.title = dict[@"title"];
//        self.options = dict[@"options"];
       
        // KVC (key value coding)鍵值編碼
        // cocoa 的大招,允許間接修改對象的屬性值
        // 第一個(gè)參數(shù)是字典的數(shù)值
        // 第二個(gè)參數(shù)是類的屬性
        [self setValue:dict[@"answer"] forKeyPath:@"answer"];
        [self setValue:dict[@"icon"] forKeyPath:@"icon"];
        [self setValue:dict[@"title"] forKeyPath:@"title"];
        [self setValue:dict[@"options"] forKeyPath:@"options"];
    }
    return self;
}

(2)setValuesForKeys的使用

上述數(shù)據(jù)操作細(xì)節(jié),可以直接通過setValuesForKeys方法來完成。

復(fù)制代碼 代碼如下:

- (instancetype)initWithDict:(NSDictionary *)dict
{
    self = [super init];
    if (self) {
        // 使用setValuesForKeys要求類的屬性必須在字典中存在,可以比字典中的鍵值多,但是不能少。
        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}

三、補(bǔ)充說明

1.readonly屬性

 (1)@property中readonly表示不允許修改對象的指針地址,但是可以修改對象的屬性。

 (2)通常使用@property關(guān)鍵字定義屬性時(shí),會生成getter&setter方法,還會生成一個(gè)帶下劃線的成員變量。

 (3)如果是readonly屬性,只會生成getter方法,不會生成帶下劃線的成員變量.

2.instancetype類型

(1)instancetype會讓編譯器檢查實(shí)例化對象的準(zhǔn)確類型
(2)instancetype只能用于返回類型,不能當(dāng)做參數(shù)使用

3.instancetype & id的比較

(1) instancetype在類型表示上,跟id一樣,可以表示任何對象類型

(2) instancetype只能用在返回值類型上,不能像id一樣用在參數(shù)類型上

(3) instancetype比id多一個(gè)好處:編譯器會檢測instancetype的真實(shí)類型

相關(guān)文章

  • iOS視頻錄制(或選擇)壓縮及上傳功能(整理)

    iOS視頻錄制(或選擇)壓縮及上傳功能(整理)

    最新做的一個(gè)功能涉及到了視頻的錄制、壓縮及上傳功能,經(jīng)過大神的一番教導(dǎo),終于倒騰清楚了,今天小編把問題經(jīng)過記錄一下分享到腳本之家平臺,供大家參考
    2017-03-03
  • iOS中setValue和setObject的區(qū)別詳解

    iOS中setValue和setObject的區(qū)別詳解

    setObject:ForKey: 是NSMutableDictionary特有的;setValue:ForKey:是KVC的主要方法。接下來通過本文給大家分享iOS中setValue和setObject的區(qū)別,需要的朋友參考下
    2017-02-02
  • 詳解iOS設(shè)置字體的三種方式

    詳解iOS設(shè)置字體的三種方式

    這篇文章主要介紹了iOS設(shè)置字體的三種方式,非常不錯,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2019-04-04
  • 使用UITextField限制只可輸入中,英文,數(shù)字的方法

    使用UITextField限制只可輸入中,英文,數(shù)字的方法

    在我們?nèi)粘i_發(fā)中經(jīng)常遇到一些情況,要UITextField只能輸入某一種特定的字符.比如大寫A-Z或者小寫a-z,或者漢字.或者數(shù)字.那么該如何實(shí)現(xiàn)呢,下面通過這篇文章來看看吧。
    2016-09-09
  • iOS CoreData 增刪改查詳解

    iOS CoreData 增刪改查詳解

    這篇文章主要為大家詳細(xì)介紹了iOS CoreData 增刪改查的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-09-09
  • IOS 性能優(yōu)化中離屏渲染

    IOS 性能優(yōu)化中離屏渲染

    本文主要介紹了IOS 性能優(yōu)化中離屏渲染的資料,提供了幾種方法講解了優(yōu)化,有需要的小伙伴可以參考下
    2016-10-10
  • iOS的HTTP請求和請求回執(zhí)類用法小結(jié)

    iOS的HTTP請求和請求回執(zhí)類用法小結(jié)

    這里為大家整理了iOS的HTTP請求和請求回執(zhí)類用法小結(jié),包括發(fā)送請求的NSURLRequest、NSMutableURLRequest和負(fù)責(zé)回復(fù)的NSURLResponse類的常用方法和屬性,需要的朋友可以參考下
    2016-06-06
  • iOS文件預(yù)覽分享小技能示例

    iOS文件預(yù)覽分享小技能示例

    這篇文章主要為大家介紹了iOS文件預(yù)覽分享小技能示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-08-08
  • iOS10最新實(shí)現(xiàn)遠(yuǎn)程通知的開發(fā)教程詳解

    iOS10最新實(shí)現(xiàn)遠(yuǎn)程通知的開發(fā)教程詳解

    這篇文章主要介紹了iOS10最新遠(yuǎn)程通知開發(fā)的實(shí)現(xiàn)過程,文章先對推送通知以及遠(yuǎn)程推送通知等進(jìn)行了基本介紹,然后通過示例代碼詳細(xì)介紹了iOS10 全新遠(yuǎn)程通知的教程,有需要的朋友們可以參考借鑒,下面來一起看看吧。
    2016-09-09
  • 詳解iOS應(yīng)用程序的啟動過程

    詳解iOS應(yīng)用程序的啟動過程

    這篇文章主要介紹了iOS應(yīng)用程序的啟動過程,講述了從其執(zhí)行main函數(shù)開始到展示UIWindow的流程中的一些關(guān)鍵點(diǎn),需要的朋友可以參考下
    2016-03-03

最新評論