zoukankan      html  css  js  c++  java
  • 工具收集


    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

  • 相关阅读:
    向量的基本运算
    tar 命令小解
    写一个块设备驱动11,12
    写一个块设备驱动9,10
    写一个块设备驱动7,8
    写一个块设备驱动5,6
    写一个块设备驱动1,2
    Linux驱动开发庖丁解牛系列
    Linux设备驱动程序(第三版)
    嵌入式系统移植基础三部曲 段彦青
  • 原文地址:https://www.cnblogs.com/li-baibo/p/3388971.html
Copyright © 2011-2022 走看看