Skip to content

Instantly share code, notes, and snippets.

View CS2Us's full-sized avatar
🌱
darter

defmodule. CS2Us

🌱
darter
View GitHub Profile
@CS2Us
CS2Us / visualstudio2019Key.txt
Created June 18, 2020 17:27
Visual Studio 2019 Product Key
Visual Studio 2019 Product Key
Visual Studio 2019 Enterprise
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF
Visual Studio 2019 Professional
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y
[Please Star this gist]
@CS2Us
CS2Us / Test_OC_Method_Swizzle.m
Last active June 13, 2019 20:06
Objective-C Method Swizzle 使用过程中需要注意的问题
//
// main.m
// testDispatch
//
// Created by guoyiyuan on 2019/6/6.
// Copyright © 2019 guoyiyuan. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
@CS2Us
CS2Us / Test_OC_Category.m
Last active June 13, 2019 09:34
Undefined behavior:Objective-C category
#import <Foundation/Foundation.h>
@interface TestCls: NSObject
@property(nonatomic, copy) NSString *name;
@end
@implementation TestCls