工具收集


1.侧边栏

 https://github.com/rnystrom/RNFrostedSidebar

          拖拽RNFrostedSidebar.m和它的.h文件导工程中。同时需要安装QuartzCore以及Accelerate两个框架。

     用法
            最简单的方法是创建一系列图片,然后初始化RNFrostedSidebar对象,然后调用-show方法。

            NSArray *images = @[
                    [UIImage imageNamed:@"gear"],
                    [UIImage imageNamed:@"globe"],
                    [UIImage imageNamed:@"profile"],
                    [UIImage imageNamed:@"star"]
                    ];

             RNFrostedSidebar *callout = [[RNFrostedSidebar alloc] initWithImages:images];
              callout.delegate = self;
              [callout show];
 2.FlatUI--扁平风格UI工具包

3.SWTableViewCell--类似于iOS 7系统Mail


4.HiBeacons--演示iOS 7新API iBeacon功能的demo app

 https://github.com/nicktoumpelis/HiBeacons?

5.REFrostedViewController--iOS7模糊效果的弹出式侧边菜单

 https://github.com/romaonthego/REFrostedViewController

原文地址:https://www.cnblogs.com/li-baibo/p/3388971.html