Skip to content

Instantly share code, notes, and snippets.

@noppefoxwolf
Created February 18, 2019 03:53
Show Gist options
  • Save noppefoxwolf/259f11866c3ed892dce08a935b4aa79a to your computer and use it in GitHub Desktop.
Save noppefoxwolf/259f11866c3ed892dce08a935b4aa79a to your computer and use it in GitHub Desktop.
--------------------------------------------
//
// 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