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);
  • 相关阅读:
    阿里云CentOS安装firefox闪退
    error: QApplication: No such file or directory
    CentOS下自动登陆root帐户
    Linux下常用软件
    【记录】haphost免费vps初始配置
    检测Linux VPS是Xen、OpenVZ还是KVM真假方法
    使用VNC远程管理VPS(Centos系统)
    配置suricata
    NGUI的输入框制作(attach- input filed script的使用)
    NGUI技能CD效果制作(sprite的type:filled)
  • 原文地址:https://www.cnblogs.com/songxing10000/p/5028572.html
Copyright © 2011-2022 走看看