text stringlengths 9 39.2M | dir stringlengths 25 226 | lang stringclasses 163
values | created_date timestamp[s] | updated_date timestamp[s] | repo_name stringclasses 751
values | repo_full_name stringclasses 752
values | star int64 1.01k 183k | len_tokens int64 1 18.5M |
|---|---|---|---|---|---|---|---|---|
```objective-c
//
// UIImage+MultiFormat.h
// SDWebImage
//
// Created by Olivier Poitrey on 07/06/13.
//
#import <UIKit/UIKit.h>
@interface UIImage (MultiFormat)
+ (UIImage *)sd_imageWithData:(NSData *)data;
@end
``` | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImage+MultiFormat.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 60 |
```objective-c
//
// UIImage+GIF.m
// LBGIFImage
//
// Created by Laurin Brandner on 06.01.12.
//
#import "UIImage+GIF.h"
#import <ImageIO/ImageIO.h>
@implementation UIImage (GIF)
+ (UIImage *)sd_animatedGIFWithData:(NSData *)data {
if (!data) {
return nil;
}
CGImageSourceRef source = CGImage... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImage+GIF.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,108 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageCompat.h"
#import "SDWebImageManager.h"
/**
* Integrat... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImageView+WebCache.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,053 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* Created by james <path_to_url on 9/28/11.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import <Foundation/Foundat... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageDecoder.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 108 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageDownloader.h"
#import "SDWebImageDownloaderOperation.h"
... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageDownloader.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,958 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImagePrefetcher.h"
#if (!defined(DEBUG) && !defined (SD_VERB... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImagePrefetcher.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,152 |
```objective-c
//
// SDWebImageCompat.m
// SDWebImage
//
// Created by Olivier Poitrey on 11/12/12.
//
#import "SDWebImageCompat.h"
#if !__has_feature(objc_arc)
#error SDWebImage is ARC only. Either turn on ARC for the project or use -fobjc-arc flag
#endif
inline UIImage *SDScaledImageForKey(NSString *key, UIImag... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageCompat.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 340 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageManager.h"
#import <objc/message.h>
@interface SDWebIma... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageManager.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,865 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "UIImageView+WebCache.h"
#import "objc/runtime.h"
#import "UIView+W... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImageView+WebCache.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,805 |
```objective-c
//
// UIImage+MultiFormat.m
// SDWebImage
//
// Created by Olivier Poitrey on 07/06/13.
//
#import "UIImage+MultiFormat.h"
#import "UIImage+GIF.h"
#import "NSData+ImageContentType.h"
#import <ImageIO/ImageIO.h>
#ifdef SD_WEBP
#import "UIImage+WebP.h"
#endif
@implementation UIImage (MultiFormat)
+ ... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImage+MultiFormat.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 660 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageCompat.h"
#import "SDWebImageManager.h"
/**
* Integrat... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIButton+WebCache.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,819 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import <Foundation/Foundation.h>
#import "SDWebImageDownloader.h"
#import ... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageDownloaderOperation.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 496 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageCompat.h"
#import "SDWebImageOperation.h"
#import "SDWeb... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageManager.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,396 |
```objective-c
//
// UIImage+GIF.h
// LBGIFImage
//
// Created by Laurin Brandner on 06.01.12.
//
#import <UIKit/UIKit.h>
@interface UIImage (GIF)
+ (UIImage *)sd_animatedGIFNamed:(NSString *)name;
+ (UIImage *)sd_animatedGIFWithData:(NSData *)data;
- (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSiz... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImage+GIF.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 98 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import <UIKit/UIKit.h>
#import "SDWebImageCompat.h"
#import "SDWebImageMan... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIImageView+HighlightedWebCache.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,055 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDWebImageDownloaderOperation.h"
#import "SDWebImageDecoder.h"
#im... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDWebImageDownloaderOperation.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,574 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "UIButton+WebCache.h"
#import "objc/runtime.h"
#import "UIView+WebC... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/UIButton+WebCache.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,582 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#ifndef _PinyinHelper_H_
#define _PinyinHelper_H_
typedef void(^OutputStringBlock)(NSString *pinYin) ;
typedef void(^OutputArrayBlock)(NSArray *array) ;
@class HanyuPinyinOutputFormat;
@interface PinyinHelper : NSObject {
}
/* async methods, "ui blocki... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/PinyinHelper.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,045 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#include "ChineseToPinyinResource.h"
#define LEFT_BRACKET @"("
#define RIGHT_BRACKET @")"
#define COMMA @","
#ifdef DEBUG
#define PYLog(...) NSLog(__VA_ARGS__)
#else
#define PYLog(__unused ...)
#endif
#define kCacheKeyForUnicode2Pinyin @"UnicodeToPinyin"
s... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/ChineseToPinyinResource.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,212 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#ifndef _PinyinFormatter_H_
#define _PinyinFormatter_H_
@class HanyuPinyinOutputFormat;
@interface PinyinFormatter : NSObject {
}
+ (NSString *)formatHanyuPinyinWithNSString:(NSString *)pinyinStr
withHanyuPinyinOutputFormat:(HanyuPinyinO... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/PinyinFormatter.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 128 |
```objective-c
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "SDImageCache.h"
#import "SDWebImageDecoder.h"
#import "UIImage+Mul... | /content/code_sandbox/WeChat/ThirdLib/SDWebImage/SDImageCache.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 4,189 |
```objective-c
//
// NSString+PinYin4Cocoa.m
// PinYin4Cocoa
//
// Created by kimziv on 13-9-15.
//
#import "NSString+PinYin4Cocoa.h"
#ifdef DEBUG
#define PYLog(...) NSLog(__VA_ARGS__)
#else
#define PYLog(__unused ...)
#endif
@implementation NSString (PinYin4Cocoa)
- (NSInteger)indexOfString:(NSString *)s {
... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/NSString+PinYin4Cocoa.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,235 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#include "HanyuPinyinOutputFormat.h"
@implementation HanyuPinyinOutputFormat
@synthesize vCharType=_vCharType;
@synthesize caseType=_caseType;
@synthesize toneType=_toneType;
- (id)init {
if (self = [super init]) {
[self restoreDefault];
}
retu... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/HanyuPinyinOutputFormat.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 138 |
```objective-c
/**
* Created by kimziv on 13-9-14.
*/
#ifndef _HanyuPinyinOutputFormat_H_
#define _HanyuPinyinOutputFormat_H_
typedef enum {
ToneTypeWithToneNumber,
ToneTypeWithoutTone,
ToneTypeWithToneMark
}ToneType;
typedef enum {
CaseTypeUppercase,
CaseTypeLowercase
}CaseType;
typedef enum {
V... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/HanyuPinyinOutputFormat.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 192 |
```objective-c
//
// NSString+PinYin4Cocoa.h
// PinYin4Cocoa
//
// Created by kimziv on 13-9-15.
//
#import <Foundation/Foundation.h>
@interface NSString (PinYin4Cocoa)
- (NSInteger)indexOfString:(NSString *)s;
- (NSInteger)indexOfString:(NSString *)s fromIndex:(int)index;
- (NSInteger)indexOf:(int)ch;
- (NSInteg... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/NSString+PinYin4Cocoa.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 287 |
```objective-c
//
// PinYin4Objc.h
// PinYin4ObjcExample
//
// Created by kimziv on 13-9-16.
//
//#ifndef PinYin4ObjcExample_PinYin4Objc_h
//#define PinYin4ObjcExample_PinYin4Objc_h
//
//
//
//#endif
#import "HanyuPinyinOutputFormat.h"
#import "PinyinHelper.h"
``` | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/PinYin4Objc.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 97 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#include "HanyuPinyinOutputFormat.h"
#include "PinyinFormatter.h"
#import "NSString+PinYin4Cocoa.h"
@interface PinyinFormatter ()
+(NSInteger)getNumericValue:(unichar)c;
+(NSInteger)indexOfChar:(int*) table ch:(unichar)c;
@end
@implementation PinyinF... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/PinyinFormatter.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,907 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#include "ChineseToPinyinResource.h"
#include "HanyuPinyinOutputFormat.h"
#include "PinyinFormatter.h"
#include "PinyinHelper.h"
#define HANYU_PINYIN @"Hanyu"
#define WADEGILES_PINYIN @"Wade"
#define MPS2_PINYIN @"MPSII"
#define YALE_PINYIN @"Yale"
#define ... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/PinyinHelper.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,168 |
```objective-c
//
//
//
// Created by kimziv on 13-9-14.
//
#ifndef _ChineseToPinyinResource_H_
#define _ChineseToPinyinResource_H_
@class NSArray;
@class NSMutableDictionary;
@interface ChineseToPinyinResource : NSObject {
NSString* _directory;
NSDictionary *_unicodeToHanyuPinyinTable;
}
//@property(nona... | /content/code_sandbox/WeChat/ThirdLib/PinYin4Objc/Classes/ChineseToPinyinResource.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 180 |
```objective-c
/*!
@header WMPlayer.h
@abstract Githubpath_to_url
CSDN:path_to_url
@author Created by zhengwenming on 16/1/24
@version 2.0.0 16/1/24 Creation()
*/
#import "Masonry.h"
@import MediaPlayer;
@import AVFoundation;
@import UIKit;
//
typedef NS_ENUM(NSInteger, WMPlayerState) {
... | /content/code_sandbox/WeChat/ThirdLib/WMPlayer/WMPlayer.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 781 |
```objective-c
//
// YYKit.h
// YYKit <path_to_url
//
// Created by ibireme on 13/3/30.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
#if __has_include(<YYKit/YYKit.h>)
FOUNDATION_EXPORT... | /content/code_sandbox/WeChat/ThirdLib/YYKit/YYKit.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,635 |
```objective-c
//
// YYDiskCache.m
// YYKit <path_to_url
//
// Created by ibireme on 15/2/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "YYDiskCache.h"
#import "YYKVStorage.h"
#import "NSString+YYAdd.h"
#import... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYDiskCache.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,155 |
```objective-c
//
// YYCache.h
// YYKit <path_to_url
//
// Created by ibireme on 15/2/13.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
@class YYMemoryCache, YYDiskCache;
NS_ASSUME_NONNU... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYCache.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,504 |
```objective-c
/*!
@header WMPlayer.m
@abstract Githubpath_to_url
CSDN:path_to_url
@author Created by zhengwenming on 16/1/24
@version 2.0.0 16/1/24 Creation()
*/
#import "WMPlayer.h"
#define WMPlayerSrcName(file) [@"WMPlayer.bundle" stringByAppendingPathComponent:file]
#define WMPlayerFrameworkSrcN... | /content/code_sandbox/WeChat/ThirdLib/WMPlayer/WMPlayer.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 8,208 |
```objective-c
//
// YYDiskCache.h
// YYKit <path_to_url
//
// Created by ibireme on 15/2/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
YYDiskCache is a ... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYDiskCache.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,052 |
```objective-c
//
// YYMemoryCache.m
// YYKit <path_to_url
//
// Created by ibireme on 15/2/7.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "YYMemoryCache.h"
#import <UIKit/UIKit.h>
#import <CoreFoundation/CoreFou... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYMemoryCache.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,712 |
```objective-c
//
// YYCache.m
// YYKit <path_to_url
//
// Created by ibireme on 15/2/13.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "YYCache.h"
#import "YYMemoryCache.h"
#import "YYDiskCache.h"
@implementation... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYCache.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,010 |
```objective-c
//
// YYKVStorage.h
// YYKit <path_to_url
//
// Created by ibireme on 15/4/22.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
YYKVStorageItem i... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYKVStorage.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,420 |
```objective-c
//
// YYMemoryCache.h
// YYKit <path_to_url
//
// Created by ibireme on 15/2/7.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
YYMemoryCache is... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYMemoryCache.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,456 |
```objective-c
//
// YYKitMacro.h
// YYKit <path_to_url
//
// Created by ibireme on 13/3/29.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
#import <sys/time.h>
#import <pthread.h>
#ifndef YYKitMacr... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/YYKitMacro.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,524 |
```objective-c
//
// YYKVStorage.m
// YYKit <path_to_url
//
// Created by ibireme on 15/4/22.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "YYKVStorage.h"
#import "UIApplication+YYAdd.h"
#import <UIKit/UIKit.h>
#i... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Cache/YYKVStorage.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 9,408 |
```objective-c
//
// CALayer+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/5/10.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "CALayer+YYAdd.h"
#import "YYKitMacro.h"
#import "YYCGUtilities.h"
YYSY... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Quartz/CALayer+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,000 |
```objective-c
//
// CALayer+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/5/10.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
NS_ASSUME_NONNULL_BEG... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Quartz/CALayer+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 735 |
```objective-c
//
// YYCGUtilities.h
// YYKit <path_to_url
//
// Created by ibireme on 15/2/28.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#if __has_include(<YY... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Quartz/YYCGUtilities.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,502 |
```objective-c
//
// YYCGUtilities.m
// YYKit <path_to_url
//
// Created by ibireme on 15/2/28.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "YYCGUtilities.h"
#import <Accelerate/Accelerate.h>
#import "UIView+YYAd... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Quartz/YYCGUtilities.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,123 |
```objective-c
//
// UIScrollView+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/5.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIScrollView+YYAdd.h"
#import "YYKitMacro.h"
YYSYNTH_DUMMY_CLASS(U... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIScrollView+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 349 |
```objective-c
//
// UITableView+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/5/12.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UITableView+YYAdd.h"
#import "YYKitMacro.h"
YYSYNTH_DUMMY_CLASS(UI... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UITableView+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 668 |
```objective-c
//
// UIFont+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/5/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIFont+YYAdd.h"
#import "YYKitMacro.h"
YYSYNTH_DUMMY_CLASS(UIFont_YYAdd... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIFont+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,370 |
```objective-c
//
// UIView+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIView+YYAdd.h"
#import <QuartzCore/QuartzCore.h>
#import "YYKitMacro.h"
... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIView+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,928 |
```objective-c
//
// UIScrollView+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/5.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions f... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIScrollView+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 272 |
```objective-c
//
// UIGestureRecognizer+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/10/13.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIGestureRecognizer+YYAdd.h"
#import "YYKitMacro.h"
#impor... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 470 |
```objective-c
//
// UITextField+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/5/12.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions f... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UITextField+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 146 |
```objective-c
//
// UITableView+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/5/12.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions f... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UITableView+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,482 |
```objective-c
//
// UIBezierPath+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/10/30.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIBezierPath+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 223 |
```objective-c
//
// UIColor+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIColor+YYAdd.h"
#import "NSString+YYAdd.h"
#import "YYKitMacro.h"
YYSY... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIColor+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 4,611 |
```objective-c
//
// UIView+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions for `UI... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIView+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 889 |
```objective-c
//
// UIBezierPath+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/10/30.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIBezierPath+YYAdd.h"
#import "UIFont+YYAdd.h"
#import <CoreText/... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIBezierPath+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 597 |
```objective-c
//
// UIImage+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provide some commen method... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIImage+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,540 |
```objective-c
//
// UIBarButtonItem+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/10/15.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensi... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 171 |
```objective-c
//
// UIColor+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
extern void YY_RGB2HSL(CGFloat ... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIColor+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,782 |
```objective-c
//
// UIScreen+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/5.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIScreen+YYAdd.h"
#import "YYKitMacro.h"
#import "UIDevice+YYAdd.h"
YY... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIScreen+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,914 |
```objective-c
//
// UIControl+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/5.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions for ... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIControl+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 527 |
```objective-c
//
// UIScreen+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/5.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions for `... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIScreen+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 338 |
```objective-c
//
// UIDevice+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIDevice+YYAdd.h"
#include <sys/socket.h>
#include <sys/sysctl.h>
#incl... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIDevice+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 4,810 |
```objective-c
//
// UIDevice+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions for `... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIDevice+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,340 |
```objective-c
//
// UIImage+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIImage+YYAdd.h"
#import "UIDevice+YYAdd.h"
#import "NSString+YYAdd.h"
#... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIImage+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 7,550 |
```objective-c
//
// UIControl+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/5.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIControl+YYAdd.h"
#import "YYKitMacro.h"
#import <objc/runtime.h>
YY... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIControl+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 855 |
```objective-c
//
// UIBarButtonItem+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/10/15.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIBarButtonItem+YYAdd.h"
#import "YYKitMacro.h"
#import <objc/... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 343 |
```objective-c
//
// UIApplication+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensions ... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIApplication+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 576 |
```objective-c
//
// UITextField+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/5/12.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UITextField+YYAdd.h"
#import "YYKitMacro.h"
YYSYNTH_DUMMY_CLASS(UI... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UITextField+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 246 |
```objective-c
//
// UIGestureRecognizer+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/10/13.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides ext... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 261 |
```objective-c
//
// UIFont+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/5/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
#import <CoreGraphics/CoreGraphics.h>
#import <CoreText/C... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIFont+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 958 |
```objective-c
//
// NSKeyedUnarchiver+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/8/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provid... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 286 |
```objective-c
//
// NSKeyedUnarchiver+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/8/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSKeyedUnarchiver+YYAdd.h"
#import "YYKitMacro.h"
YYSYNTH_DUM... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 298 |
```objective-c
//
// UIApplication+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "UIApplication+YYAdd.h"
#import "NSArray+YYAdd.h"
#import "NSObject... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/UIKit/UIApplication+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,786 |
```objective-c
//
// NSNumber+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/8/24.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSNumber+YYAdd.h"
#import "NSString+YYAdd.h"
#import "YYKitMacro.h"
Y... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSNumber+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 434 |
```objective-c
//
// NSString+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSString+YYAdd.h"
#import "NSData+YYAdd.h"
#import "NSNumber+YYAdd.h"
#... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSString+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 3,397 |
```objective-c
//
// NSObject+YYAddForKVO.m
// YYKit <path_to_url
//
// Created by ibireme on 14/10/15.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSObject+YYAddForKVO.h"
#import "YYKitMacro.h"
#import <objc/ob... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSObject+YYAddForKVO.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 816 |
```objective-c
//
// NSDictionary+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provide some some com... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSDictionary+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,368 |
```objective-c
//
// NSNotificationCenter+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/8/24.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSNotificationCenter+YYAdd.h"
#include <pthread.h>
#import... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 558 |
```objective-c
//
// NSBundle+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/10/20.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSBundle+YYAdd.h"
#import "NSString+YYAdd.h"
#import "YYKitMacro.h"
... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSBundle+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 719 |
```objective-c
//
// NSNumber+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/8/24.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provide a meth... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSNumber+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 178 |
```objective-c
//
// NSData+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSData+YYAdd.h"
#import "YYKitMacro.h"
#include <CommonCrypto/CommonCrypt... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSData+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 6,228 |
```objective-c
//
// NSDate+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSDate+YYAdd.h"
#import "YYKitMacro.h"
#import <time.h>
YYSYNTH_DUMMY_C... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSDate+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,467 |
```objective-c
//
// NSArray+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSArray+YYAdd.h"
#import "YYKitMacro.h"
#import "NSData+YYAdd.h"
YYSYNT... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSArray+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,109 |
```objective-c
//
// NSNotificationCenter+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/8/24.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Pr... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 629 |
```objective-c
//
// NSString+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provide hash, encrypt, en... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSString+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,896 |
```objective-c
//
// NSDictionary+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSDictionary+YYAdd.h"
#import "NSString+YYAdd.h"
#import "NSData+YY... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSDictionary+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,841 |
```objective-c
//
// NSObject+YYAddForARC.h
// YYKit <path_to_url
//
// Created by ibireme on 13/12/15.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
/**
Debug method for NSObject when u... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSObject+YYAddForARC.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 157 |
```objective-c
//
// NSBundle+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/10/20.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides exte... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSBundle+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 786 |
```objective-c
//
// NSObject+YYAddForKVO.h
// YYKit <path_to_url
//
// Created by ibireme on 14/10/15.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Observe... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSObject+YYAddForKVO.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 354 |
```objective-c
//
// NSTimer+YYAdd.m
// YYKit <path_to_url
//
// Created by ibireme on 14/15/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSTimer+YYAdd.h"
#import "YYKitMacro.h"
YYSYNTH_DUMMY_CLASS(NSTimer_Y... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSTimer+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 282 |
```objective-c
//
// NSObject+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/10/8.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Common tasks f... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSObject+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 2,388 |
```objective-c
//
// NSTimer+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 14/15/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides exten... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSTimer+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 549 |
```objective-c
//
// NSDate+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/11.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provides extensi... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSDate+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,362 |
```objective-c
//
// NSThread+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 15/7/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSThread+YYAdd.h"
#import <CoreFoundation/CoreFoundation.h>
#import <UI... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSThread+YYAdd.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 909 |
```objective-c
//
// NSThread+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 15/7/3.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
@interface NSThread (YYAdd)
/**
Add an auto... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSThread+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 164 |
```objective-c
//
// NSObject+YYAddForARC.m
// YYKit <path_to_url
//
// Created by ibireme on 13/12/15.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import "NSObject+YYAddForARC.h"
@interface NSObject_YYAddForARC : NSOb... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSObject+YYAddForARC.m | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 209 |
```objective-c
//
// NSArray+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provide some som... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSArray+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,245 |
```objective-c
//
// NSData+YYAdd.h
// YYKit <path_to_url
//
// Created by ibireme on 13/4/4.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
Provide hash, enc... | /content/code_sandbox/WeChat/ThirdLib/YYKit/Base/Foundation/NSData+YYAdd.h | objective-c | 2016-06-06T01:53:42 | 2024-08-05T09:45:48 | WeChat | zhengwenming/WeChat | 1,626 | 1,553 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.