Skip to content

Instantly share code, notes, and snippets.

@auaicn
Created February 18, 2021 15:11
Show Gist options
  • Save auaicn/73be9e41c2ddde8cdddebd3a1117b2b9 to your computer and use it in GitHub Desktop.
Save auaicn/73be9e41c2ddde8cdddebd3a1117b2b9 to your computer and use it in GitHub Desktop.
gist description
#ifndef "gist.h"
#define "gist.h"
#endif
@interface myClass : UIViewController {
String* auaicn;
}
@property(retain,nonatomic) String* auaicn;
#import gist.h
@synthesize auaicn = _auaicn;
- (void) onClickListiner {
_auaicn = 4;
}
#include <stdio.h>
int main (){
printf("what is gist?\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment