2015-04-16 18:07:35 +08:00
|
|
|
/*
|
2017-02-14 14:36:57 +08:00
|
|
|
* Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2015-04-16 18:07:35 +08:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "NativeOcClass.h"
|
|
|
|
#if TARGET_OS_IPHONE
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#elif TARGET_OS_MAC
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#endif
|
|
|
|
@implementation NativeOcClass
|
|
|
|
+(float) callNative:(NSNumber *)a andInt:(NSString *)str{
|
|
|
|
float b = [a floatValue]+111.3333;
|
|
|
|
NSLog(@"callNative string is %@ and int value is %f",str,b);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
+(void)callNativeWithParam:(NSString *)str{
|
|
|
|
NSLog(@"callNativeWithParam: str is %@ ",str);
|
|
|
|
}
|
|
|
|
+(NSString *)callNativeWithReturnString{
|
|
|
|
return @"yes is a return string form objective-c";
|
|
|
|
}
|
|
|
|
+(BOOL)callNativeWithReturnBool{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
+(int)callNativeWithAdd:(NSNumber *)num1 and:(NSNumber *)num2{
|
|
|
|
return [num1 intValue]+[num2 intValue];
|
|
|
|
}
|
2015-12-29 07:59:36 +08:00
|
|
|
#if TARGET_OS_IPHONE && !TARGET_OS_TV
|
2015-04-16 18:07:35 +08:00
|
|
|
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content{
|
|
|
|
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title message:content delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
|
|
|
|
[alertView show];
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-01 10:41:24 +08:00
|
|
|
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content addBool:(BOOL)logicSwitch{
|
|
|
|
if (logicSwitch)
|
|
|
|
{
|
|
|
|
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title message:content delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"it's true", nil];
|
|
|
|
[alertView show];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title message:content delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"it's false", nil];
|
|
|
|
[alertView show];
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-12-29 07:59:36 +08:00
|
|
|
#elif TARGET_OS_IPHONE && TARGET_OS_TV
|
|
|
|
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content{
|
|
|
|
|
|
|
|
// UIAlertController* alert = [UIAlertController
|
|
|
|
// alertControllerWithTitle:title
|
|
|
|
// message:content
|
|
|
|
// preferredStyle:UIAlertControllerStyleAlert];
|
|
|
|
//
|
|
|
|
// [self presentViewController:alert animated:YES completion:nil];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content addBool:(BOOL)logicSwitch
|
|
|
|
{
|
|
|
|
// Not implemented
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-16 18:07:35 +08:00
|
|
|
#elif TARGET_OS_MAC
|
|
|
|
|
|
|
|
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content{
|
|
|
|
NSAlert *alert = [[NSAlert alloc] init];
|
|
|
|
[alert addButtonWithTitle:@"OK"];
|
|
|
|
[alert addButtonWithTitle:@"Cancel"];
|
|
|
|
[alert setMessageText:title];
|
|
|
|
[alert setInformativeText:content];
|
|
|
|
[alert setAlertStyle:NSWarningAlertStyle];
|
|
|
|
[alert runModal];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-01 10:41:24 +08:00
|
|
|
+(BOOL)callNativeUIWithTitle:(NSString *) title andContent:(NSString *)content addBool:(BOOL)logicSwitch{
|
|
|
|
NSAlert *alert = [[NSAlert alloc] init];
|
|
|
|
if (logicSwitch)
|
|
|
|
{
|
|
|
|
[alert addButtonWithTitle:@"it's true"];
|
|
|
|
[alert addButtonWithTitle:@"Cancel"];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[alert addButtonWithTitle:@"it's false"];
|
|
|
|
[alert addButtonWithTitle:@"Cancel"];
|
|
|
|
}
|
|
|
|
|
|
|
|
[alert setMessageText:title];
|
|
|
|
[alert setInformativeText:content];
|
|
|
|
[alert setAlertStyle:NSWarningAlertStyle];
|
|
|
|
[alert runModal];
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-16 18:07:35 +08:00
|
|
|
#endif
|
|
|
|
@end
|