十一岁的加重songxing10000…… ------ 回到博主首页

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);

 

posted @ 2015-12-08 11:29  songxing10000  阅读(518)  评论(0编辑  收藏  举报