zoukankan      html  css  js  c++  java
  • 3332

    pod install --verbose --no-repo-update
    
    
    https://github.com/kolyvan/kxmovie
    https://github.com/yuantiku/YTKNetwork
    https://github.com/xmartlabs/XLPagerTabStrip
    https://github.com/xhzengAIB/MessageDisplayKit
    
    https://github.com/JayFang1993/ScanBook
    
    https://github.com/Marxon13/M13ProgressSuite
    https://github.com/leanote/leanote
    
    https://github.com/cjwirth/awesome-ios-ui
    
    https://github.com/ChenYilong/CollectionViewClassifyMenu
    https://github.com/shaojiankui/iOS-Categories
    
    https://github.com/songxing10000/Onboard
    https://github.com/romaonthego/RESideMenu
    https://github.com/kimsungwhee/KSHObjcUML
    https://github.com/XVXVXXX/DoubanFM
    https://github.com/gsdios/GSD_ZHIFUBAO
    https://github.com/alikaragoz/MCSwipeTableViewCell
    https://github.com/PhamBaTho/BTNavigationDropdownMenu
    https://github.com/jonathantribouharet/JTCalendar
    https://github.com/belm/BaiduFM-Swift
    https://github.com/dkhamsing/open-source-ios-apps
    https://github.com/sinaweibosdk/weibo_ios_sdk
    https://github.com/Coding/Coding-iOS
    https://github.com/nicklockwood/iCarousel
    https://github.com/leanote/leanote-ios
    https://github.com/ihappyhacking/MyOne-iOS
    https://github.com/ViewDeck/ViewDeck
    https://github.com/CEWendel/SWTableViewCell
    https://github.com/getlantern/lantern
    https://github.com/xmartlabs/XLForm
    https://github.com/MatthewYork/DateTools
    https://github.com/Mozharovsky/CVCalendar
    各种刷新 https://github.com/xhzengAIB/XHRefreshControl
    NSAppTransportSecurity
    NSAllowsArbitraryLoads
    
    
    + (void)setTableViewMarginsZero:(UITableView *)view {
        if (SYSTEM_VERSION < 8) {
            if ([view respondsToSelector:@selector(setSeparatorInset:)]) {
                [view setSeparatorInset:UIEdgeInsetsZero];
            }
        }
        else {
            if ([view respondsToSelector:@selector(layoutMargins)]) {
                view.layoutMargins = UIEdgeInsetsZero;
            }
        }
    }
    + (NSString *)currentVersion {
        NSString *versionStr = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
        return versionStr;
    }
    
    + (UIColor *)randomColor {
        CGFloat hue = arc4random() % 256 / 256.0;
        CGFloat saturation = arc4random() % 128 / 256.0 + 0.5;
        CGFloat brightness = arc4random() % 128 / 256.0 + 0.5;
        return [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];
    }
    
    
        NSParameterAssert(messageItem != nil);
  • 相关阅读:
    MOSS007 服务器的配置
    服务器日志查询代码
    MOSS2007页面UI定制(无代码上手)
    远程服务器监控程序浅谈
    CoreChart安装使用分享(附 安装文件CoreChart.wsp)
    Tree WebPart的介绍
    思科金牌、银牌代理商名录
    如何让你的移动硬盘或者U盘变得百毒不侵呢?
    CCNA网络工程师面试题
    ICMP报文的各种格式和种类
  • 原文地址:https://www.cnblogs.com/songxing10000/p/5028572.html
Copyright © 2011-2022 走看看