Created
February 18, 2019 03:53
-
-
Save noppefoxwolf/259f11866c3ed892dce08a935b4aa79a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------- | |
// | |
// ObjCClass.h | |
// ihvaiusdhv | |
// | |
// Created by Tomoya Hirano on 2019/02/18. | |
// Copyright © 2019 Tomoya Hirano. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
NS_ASSUME_NONNULL_BEGIN | |
@interface ObjCClass : NSObject | |
- (void)_setCornerRadius:(double)arg1; | |
@end | |
NS_ASSUME_NONNULL_END | |
-------------------------------------------- | |
// | |
// ObjCClass.m | |
// ihvaiusdhv | |
// | |
// Created by Tomoya Hirano on 2019/02/18. | |
// Copyright © 2019 Tomoya Hirano. All rights reserved. | |
// | |
#import "ObjCClass.h" | |
@implementation ObjCClass | |
- (void)_setCornerRadius:(double)arg1 { | |
NSLog(@"called"); | |
} | |
@end | |
-------------------------------------------- | |
ObjCClass.init().setValue(29, forKey: "cornerRadius") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment