美文网首页
iOS 项目 笔记

iOS 项目 笔记

作者: 小的小碰撞 | 来源:发表于2017-07-18 10:07 被阅读0次

    1.对于cell间隙的方法

    // 重写setFrame方法
    -(void)setFrame:(CGRect)frame{
        frame.origin.x = 5;
        frame.size.width -= 2*frame.origin.x;
        frame.size.height -= 1;
     
        [super setFrame:frame];
        
    }
    
    
    - (void)setBounds:(CGRect)bounds
    {
        bounds.size = CGSizeMake(100, 100);
        [super setBounds:bounds];
    }
    

    2. 对于上拉和下拉

    • 对于上拉刷新请求第一页数据时 要记得清楚数据源
    // 清除所有旧数据
     [rc.users removeAllObjects];
    
    • 对于用户过快的点击不同类别 这时服务器频繁的请求时,我们只需要最终的点击的类别的数据 所以就要停止网络求block 的数据 怎么办呢?
      设置一个全局params 标记 在block里面判断
    self.params = params;
    
    // 不是最后一次请求
      if (self.params != params) return;
    
    
    • 再有就是销毁控制器时,销毁网络请求类 否则会崩溃
    /** AFN请求管理者 */
    @property (nonatomic, strong) AFHTTPSessionManager *manager;
    #pragma mark - 控制器的销毁
    - (void)dealloc
    {
        // 停止所有操作
        [self.manager.operationQueue cancelAllOperations];
        
    }
    
    
    • 一个新的取到 indexPath的方法
    self.dataSource[self.categoryTableView.indexPathForSelectedRow.row] ==
    self.dataSource[indexPath.row];
    
    indexPath ==  self.categoryTableView.indexPathForSelectedRow
    
    • MJRefresh 控件的两个方法
     // 让底部控件结束刷新
        if (rc.users.count == rc.total) { // 全部数据已经加载完毕
            [self.userTableView.footer noticeNoMoreData];
        } else { // 还没有加载完毕
            [self.userTableView.footer endRefreshing];
        }
    

    3.cell 中的注意的地方

    • 当cell的selection为None时, 即使cell被选中了, 内部的子控件也不会进入高亮状态
    /**
     * 可以在这个方法中监听cell的选中和取消选中
     */
    - (void)setSelected:(BOOL)selected animated:(BOOL)animated
    {
        [super setSelected:selected animated:animated];
        
        self.selectedIndicator.hidden = !selected;
        self.textLabel.textColor = selected ? self.selectedIndicator.backgroundColor : XMGRGBColor(78, 78, 78);
    }
    

    4.键盘工具条

    • inputAccessoryView 是键盘工具条的辅助条
     self.nameField.inputAccessoryView = toolbar;
    
    - (void)keyboardTool:(XMGKeyboardTool *)tool didClickItem:(XMGKeyboardToolItem)item
    {
        if (item == XMGKeyboardToolItemPrevious) {
            NSUInteger currentIndex = 0;
            for (UIView *view in self.view.subviews) {
                if ([view isFirstResponder]) {
                    currentIndex = [self.fields indexOfObject:view];
                }
            }
            currentIndex--;
            
            [self.fields[currentIndex] becomeFirstResponder];
            
            self.toolbar.previousItem.enabled = (currentIndex != 0);
            self.toolbar.nextItem.enabled = YES;
            
        } else if (item == XMGKeyboardToolItemNext) {
            NSUInteger currentIndex = 0;
            for (UIView *view in self.view.subviews) {
                if ([view isFirstResponder]) {
                    currentIndex = [self.fields indexOfObject:view];
                }
            }
            currentIndex++;
            
            [self.fields[currentIndex] becomeFirstResponder];
            
            self.toolbar.previousItem.enabled = YES;
            self.toolbar.nextItem.enabled = (currentIndex != self.fields.count - 1);
        
        } else if (item == XMGKeyboardToolItemDone) {
            
            [self.view endEditing:YES];
        }
    }
    
    /**
     * 键盘弹出就会调用这个方法
     */
    - (void)textFieldDidBeginEditing:(UITextField *)textField
    {
        NSUInteger currentIndex = [self.fields indexOfObject:textField];
        
        self.toolbar.previousItem.enabled = (currentIndex != 0);
        self.toolbar.nextItem.enabled = (currentIndex != self.fields.count - 1);
    }
    
    

    5 运行时获取属性和成员变量

    + (void)getProperties
    {
        unsigned int count = 0;
        
        objc_property_t *properties = class_copyPropertyList([UITextField class], &count);
        
        for (int i = 0; i<count; i++) {
            // 取出属性
            objc_property_t property = properties[i];
            
            // 打印属性名字
            XMGLog(@"%s   <---->   %s", property_getName(property), property_getAttributes(property));
        }
        
        free(properties);
    }
    
    + (void)getIvars
    {
        unsigned int count = 0;
        
        // 拷贝出所有的成员变量列表
        Ivar *ivars = class_copyIvarList([UITextField class], &count);
        
        for (int i = 0; i<count; i++) {
            // 取出成员变量
            //        Ivar ivar = *(ivars + i);
            Ivar ivar = ivars[i];
            
            // 打印成员变量名字
            XMGLog(@"%s %s", ivar_getName(ivar), ivar_getTypeEncoding(ivar));
        }
        
        // 释放
        free(ivars);
    }
    
    

    cell中的图片的显示 注意

    • 在不知道图片扩展名的情况下,如何知道图片的真是类型?
    • 取出图片数据的第一个字节,就可以判断出图片的真是类型
    • SDWebImage 就是这样做的
    • eg:NSData+ImageContentType.h


      SDWebImage.png
    • Gif 图片的工作原理 ImageOI 库--解析成N个image 在用imageAnimation 动画
      1. 通过图片类型判断gif
    // 判断是否为gif
    NSString *extension = topic.large_image.pathExtension;
    self.gifView.hidden = ![extension.lowercaseString isEqualToString:@"gif"];
    // pathExtension: 取到文件后缀名
    // lowercaseString : 把大写字母转换成小写字母
    
    // 从路径中获得完整的文件名(带后缀)      
    exestr = [filePath lastPathComponent];  
        NSLog(@"%@",exestr);  
    // 获得文件名(不带后缀)  
    exestr = [exestr stringByDeletingPathExtension];      
        NSLog(@"%@",exestr);  
      
    // 获得文件的后缀名(不带'.')  
    exestr = [filePath pathExtension];  
        NSLog(@"%@",exestr);  
    
     lcString = [[myString uppercaseString] lowercaseString];
    

    6 三方框架

      1. 如何屏蔽三方框架的风险 ?
    • 包装--》将三方框架包装 集成三方然后自定义写自己需要的
    • 2.事件不传递特性
    • 3.%%--》转义字符==》一个%
    • 4.view控件中如何实现 presentViewController
    [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:showPicture animated:YES completion:nil];
    
    • 五. guideView显示 如何存储当前版本号
    + (void)show
    {
        NSString *key = @"CFBundleShortVersionString";
        
        // 获得当前软件的版本号
        NSString *currentVersion = [NSBundle mainBundle].infoDictionary[key];
        // 获得沙盒中存储的版本号
        NSString *sanboxVersion = [[NSUserDefaults standardUserDefaults] stringForKey:key];
        
        if (![currentVersion isEqualToString:sanboxVersion]) {
            UIWindow *window = [UIApplication sharedApplication].keyWindow;
            
            XMGPushGuideView *guideView = [XMGPushGuideView guideView];
            guideView.frame = window.bounds;
            [window addSubview:guideView];
            
            // 存储版本号
            [[NSUserDefaults standardUserDefaults] setObject:currentVersion forKey:key];
            [[NSUserDefaults standardUserDefaults] synchronize];
        }
    }
    
    • 六 属性中一旦出现readonly 修饰 需要在.m中重写私有变量 get方法
    readonly.png setRedonaly.png getfangfa.png

    7、重绘图形

    // 开启图形上下文
            UIGraphicsBeginImageContextWithOptions(topic.pictureF.size, YES, 0.0);
            
            // 将下载完的image对象绘制到图形上下文
            CGFloat width = topic.pictureF.size.width;
            CGFloat height = width * image.size.height / image.size.width;
            [image drawInRect:CGRectMake(0, 0, width, height)];
            
            // 获得图片
            self.imageView.image = UIGraphicsGetImageFromCurrentImageContext();
            
            // 结束图形上下文
            UIGraphicsEndImageContext();
    

    8、 将图片保存到相册

     // 将图片写入相册
        UIImageWriteToSavedPhotosAlbum(self.imageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    
    - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
    {
        if (error) {
            [SVProgressHUD showErrorWithStatus:@"保存失败!"];
        } else {
            [SVProgressHUD showSuccessWithStatus:@"保存成功!"];
        }
    }
    

    9、block

    @property (nonatomic, copy) void (^returnScanBarCodeValue)(NSString * barCodeString);
    
    - (void)cancelWithCompletionBlock:(void (^)())completionBlock
    
     // 执行传进来的completionBlock参数
       !completionBlock ? : completionBlock();
    
    • pop和Core Animation的区别

    1.Core Animation的动画只能添加到layer上
    2.pop的动画能添加到任何对象
    3.pop的底层并非基于Core Animation, 是基于CADisplayLink
    4.Core Animation的动画仅仅是表象, 并不会真正修改对象的frame\size等值
    5.pop的动画实时修改对象的属性, 真正地修改了对象的属性

    10 图片的圆角处理

    // image 分类中
    - (UIImage *)circleImage
    {
        // NO代表透明
        UIGraphicsBeginImageContextWithOptions(self.size, NO, 0.0);
        
        // 获得上下文
        CGContextRef ctx = UIGraphicsGetCurrentContext();
        
        // 添加一个圆
        CGRect rect = CGRectMake(0, 0, self.size.width, self.size.height);
        CGContextAddEllipseInRect(ctx, rect);
        
        // 裁剪
        CGContextClip(ctx);
        
        // 将图片画上去
        [self drawInRect:rect];
        
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
        
        UIGraphicsEndImageContext();
        
        return image;
    }
    // imageview 分类中
    - (void)setHeader:(NSString *)url
    {
        UIImage *placeholder = [[UIImage imageNamed:@"defaultUserIcon"] circleImage];
        [self sd_setImageWithURL:[NSURL URLWithString:url] placeholderImage:placeholder completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
            self.image = image ? [image circleImage] : placeholder;
        }];
    }
    

    相关文章

      网友评论

          本文标题:iOS 项目 笔记

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