add .gitignore

This commit is contained in:
JoyWayer
2023-12-27 20:38:37 +08:00
parent b106a628a5
commit f6343426d6
515 changed files with 104217 additions and 199 deletions

View File

@@ -0,0 +1,37 @@
//
// CustomWindow.m
// AmrConvertAndRecord
//
// Created by Jeans on 3/29/13.
// Copyright (c) 2013 Jeans. All rights reserved.
//
#import "CustomWindow.h"
@implementation CustomWindow
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
-(void)sendEvent:(UIEvent *)event {
@try {
if (event.type == UIEventTypeTouches) {//nScreenTouch
[[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:@"nScreenTouch" object:nil userInfo:[NSDictionary dictionaryWithObject:event forKey:@"data"]]];
}
[super sendEvent:event];
} @catch (NSException *exception) {
NSLog(@"%@",exception);
} @finally {
NSLog(@"@finally");
}
}
@end