美文网首页
私家书藏 - iOS 实战

私家书藏 - iOS 实战

作者: owenqi | 来源:发表于2017-02-10 13:32 被阅读0次

    Lesson - 1

    1. 设置 tabBar 的三个 viewController

    2. 设置三个 tabBarController 的图片和选中时候的颜色

      tabBarController.tabbar.tintColor = [UIColor colorWithRed:80/255.0 green:150/255.0 blue:130/255.0 alpha:1];
      
    3. 设置 icon 和启动图片

      • icon 有对应的尺寸, 像素为 点数x 放大倍数
      • 设置 app 名字可以在 info.plist 中添加 Bundle display name 字段, 对应的 string 值为 app 的名字

    Lesson - 2

    1. 点击第二个 Tab 弹出扫码界面
      • 截取 tabBar 的点击事件, 通过设置 delegate 实现
      • 重写 - tabBarController: shouldSelectViewController: 这个方法, 在方法中判断, 如果当前 view 是第二个视图, 则 return NO, 达到不选中第二个 tab 的效果
    2. 左上角返回按钮, 右上角开启和关闭手电筒
      • 因为要在左上角和右上角分别实现一个按钮, 则将 scannerViewController 嵌套在 navigationController 中
      • 将导航栏设置成透明, 并且把导航栏底部的线删除了
    self.navigationController.navigationBar.translucent = YES;
    [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
    self.navigationController.navigationBar.shadowImage = [UIImage new];
    
    1. 扫面界面的 UI 实现
      • 需要将扫描 View 的几个内容暴露在外初始化: 扫描区域的大小, 扫描区域相对于中心点的偏移量
      • 绘制半透明遮罩 (由四个矩形组成)
      • 绘制中间扫描区域的白色描边
      • 绘制中间扫描区域的四个角落
      • 给扫描区域中的扫描线添加动画, 使用了 CABasicAnimation
    2. 识别 ISBN, 设置预览画面, 通过真机运行
    self.captureSession = [[AVCaptureSession alloc] init];
        
    // 事务开始配置
    [self.captureSession beginConfiguration];
        
    AVCaptureDevice *captureDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
    NSError *error = nil;
    AVCaptureDeviceInput *captureInput = [AVCaptureDeviceInput deviceInputWithDevice:captureDevice
                                                                                   error:&error];
        
    // 捕获错误, 如果没有错误则继续执行
    if (error) {
        NSLog(@"Input device error : %@", error);
        return;
    }
        
    if ([self.captureSession canAddInput:captureInput]) {
        [self.captureSession addInput:captureInput];
    }
        
    // 设置输出
    AVCaptureMetadataOutput *captureOutput = [[AVCaptureMetadataOutput alloc] init];
    // 设置了代理, 需要实现代理中的方法
    [captureOutput setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
        
    if ([self.captureSession canAddOutput:captureOutput]) {
        [self.captureSession addOutput:captureOutput];
        captureOutput.metadataObjectTypes = @[AVMetadataObjectTypeEAN13Code];
    }
        
    // 添加预览画面
    CALayer *layer = [AVCaptureVideoPreviewLayer layerWithSession:self.captureSession];
    layer.frame = self.view.layer.bounds;
    [self.view.layer addSublayer:layer];
        
    // 事务结束配置
    [self.captureSession commitConfiguration];
        
    // 事务开始运行
    [self.captureSession startRunning];
        
        
        
    #pragma mark - 通过代理方法, 进行 ISBN 识别
    - (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection {
        NSString *ISBN = nil;
            
            
        AVMetadataObject *metadata = [metadataObjects firstObject];
        ISBN = [(AVMetadataMachineReadableCodeObject *)metadata stringValue];
        if (ISBN != nil) {
            NSLog(@"%@", ISBN);
    //      [self fetchBookWithISBN:ISBN];
            [self AFNetworkingFetchBookWithISBN:ISBN];
        }
        [self.captureSession stopRunning];
        [self.scanView stopAnimation];
    }
    
    
    1. 使用豆瓣 API 查询书籍的详细信息

      • 使用 AFNetworking 框架发送 get 请求
      // 豆瓣通过 isbn 查询书籍信息的 api 为 https://api.douban.com/v2/book/isbn/:name
      NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
      
      AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
      
      NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://api.douban.com/v2/book/isbn/%@", ISBN]];
      
      NSURLRequest *request = [NSURLRequest requestWithURL:url];
      
      NSURLSessionTask *task = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {
          if (error) {
              NSLog(@"%@", error);
              return ;
          }
          // NSLog(@"%@, %@", response, responseObject);
          // 对 responseObject 进行处理, 显示弹窗等
      }];
      
      [task resume];
      
    2. 在进行获取书籍信息的时候, 显示 loading 状态

      // 在后台进行网络数据的获取
      // 网络数据获取开始之前, 显示加载状态
      // 网络数据获取之后, 在显示弹窗之前, 将加载状态的 view 隐藏
      // 在主线程显示加载中
      dispatch_async(dispatch_get_main_queue(), ^{
          [self showLoadingView];
      });
      
      NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
      
      AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];
      
      NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://api.douban.com/v2/book/isbn/%@", ISBN]];
      
      NSURLRequest *request = [NSURLRequest requestWithURL:url];
      
      NSURLSessionTask *task = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {
          if (error) {
              NSLog(@"%@", error);
              return ;
          }
      

    // NSLog(@"%@, %@", response, responseObject);

        NSString *title = [responseObject objectForKey:@"title"];
        NSString *author = [[responseObject objectForKey:@"author"] firstObject];
        
        NSString *alertMsg = [NSString stringWithFormat:@"%@\n%@\n%@", title, ISBN, author];
        
        // 主线程操作
        dispatch_async(dispatch_get_main_queue(), ^{
            [self hideLoadingView];
            
            /****** 进行弹窗的操作 ******/
        });
        
    }];
    
    [task resume];
    ```
    
    1. 升到iOS10之后,需要设置权限的有:

       麦克风权限:Privacy - Microphone Usage Description 是否允许此App使用你的麦克风?
       相机权限:Privacy - Camera Usage Description 是否允许此App使用你的相机?
       相册权限:Privacy - Photo Library Usage Description 是否允许此App访问你的媒体资料库?
       通讯录权限:Privacy - Contacts Usage Description 是否允许此App访问你的通讯录?
       蓝牙权限:Privacy - Bluetooth Peripheral Usage Description 是否许允此App使用蓝牙?
       语音转文字权限:Privacy - Speech Recognition Usage Description 是否允许此App使用语音识别?
       日历权限:Privacy - Calendars Usage Description 
       定位权限:Privacy - Location When In Use Usage Description 
       定位权限: Privacy - Location Always Usage Description 
       位置权限:Privacy - Location Usage Description
       媒体库权限:Privacy - Media Library Usage Description
       健康分享权限:Privacy - Health Share Usage Description
       健康更新权限:Privacy - Health Update Usage Description
       运动使用权限:Privacy - Motion Usage Description
       音乐权限:Privacy - Music Usage Description
       提醒使用权限:Privacy - Reminders Usage Description
       Siri使用权限:Privacy - Siri Usage Description
       电视供应商使用权限:Privacy - TV Provider Usage Description
       视频用户账号使用权限:Privacy - Video Subscriber Account Usage Description
      
    AVAuthorizationStatus authStatus = [AVCaptureDeviceauthorizationStatusForMediaType:AVMediaTypeVideo];
    if (authStatus ==AVAuthorizationStatusRestricted || authStatus ==AVAuthorizationStatusDenied) {
        // 权限为开启 (此应用程序没有被授权访问的照片数据。可能是家长控制权限)
    }
    

    Lesson - 3

    • 书籍详情页面布局
      • 导航栏透明
      • 透过导航栏可以看到背面的一个 imageView, 橙色的
      • 左上角为返回按钮
      • 橙色背景上的内容为书籍的基本信息, 可以滚动
      • 下部分为书籍的详细信息, 可以滚动
      • 书籍的基本信息和详细信息在同一个 scrollView 上, 当 scrollView 向上滚动的时候, 详细信息的视图会遮住背景, 当 scrollView 向下滚动的时候, 设置代理, 将背景图片的高度拉伸, 造成下拉的效果
    IMG.PNG
    • 设计数据库的表结构
    return @[
                 @"CREATE TABLE IF NOT EXISTS 'TB_BOOK_ENTITY' \
        ('id' INTEGER PRIMARY KEY AUTOINCREMENT, \
        'doubanId' INTEGER UNIQUE, 'isbn10' TEXT, 'isbn13' TEXT, \
        'title' TEXT, 'doubanURL' TEXT, 'imageURL' TEXT, 'publisher' TEXT, \
        'pubdate' TEXT, 'price' TEXT, 'summary' TEXT, 'author_intro' TEXT)",
                     
                     
                     @"CREATE TABLE IF NOT EXISTS 'TB_BOOK_AUTHOR' \
        ('bookId' INTEGER, 'name' TEXT)",
                     
                     
                     @"CREATE TABLE IF NOT EXISTS 'TB_BOOK_TRANSLATOR' \
        ('bookId' INTEGER, 'name' TEXT)",
                     
                     
                     @"CREATE TABLE IF NOT EXISTS 'TB_BOOK_TAG' \
        ('bookId' INTEGER, 'name' TEXT, 'count' INTEGER)"
                     ];
    }
    
    • 分层, 添加 DAO (Data Access Object) & Service 层
      • DAO
        • 与 Model 一一对应, 对应 Model 的增删改查等功能, 只和一个 Model 进行通信
        • insertModel
        • queryModel
        • deleteModel
      • Service
        • 跨表, 跨 DAO 进行操作
        • 适用于业务场景的调用, 应对单独的增删改查操作

    相关文章

      网友评论

          本文标题:私家书藏 - iOS 实战

          本文链接:https://www.haomeiwen.com/subject/qqpgittx.html