Skip to content

Commit

Permalink
Merge pull request #147 from devxoul/objective-c
Browse files Browse the repository at this point in the history
Objective-C compatibility (and NativeScript compatibility)
  • Loading branch information
devxoul committed Apr 7, 2019
2 parents 41dfbb3 + 02f92c2 commit 2447635
Show file tree
Hide file tree
Showing 11 changed files with 524 additions and 9 deletions.
16 changes: 16 additions & 0 deletions DemoObjC/AppDelegate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// AppDelegate.h
// ToasterDemoObjC
//
// Created by Antoine Cœur on 2019/4/4.
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end

28 changes: 28 additions & 0 deletions DemoObjC/AppDelegate.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// AppDelegate.m
// ToasterDemoObjC
//
// Created by Antoine Cœur on 2019/4/4.
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//

#import "AppDelegate.h"
#import "RootViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];
self.window.backgroundColor = UIColor.whiteColor;
self.window.rootViewController = [RootViewController new];
[self.window makeKeyAndVisible];

return YES;
}

@end
98 changes: 98 additions & 0 deletions DemoObjC/Assets.xcassets/AppIcon.appiconset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
},
{
"idiom" : "ipad",
"size" : "20x20",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "29x29",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "40x40",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "76x76",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "76x76",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "83.5x83.5",
"scale" : "2x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
6 changes: 6 additions & 0 deletions DemoObjC/Assets.xcassets/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}
27 changes: 27 additions & 0 deletions DemoObjC/Base.lproj/LaunchScreen.storyboard
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="8150" systemVersion="15A204g" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="01J-lp-oVM">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="8122"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
<viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<animations/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
</document>
43 changes: 43 additions & 0 deletions DemoObjC/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
14 changes: 14 additions & 0 deletions DemoObjC/RootViewController.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// RootViewController.h
// ToasterDemoObjC
//
// Created by Antoine Cœur on 2019/4/4.
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface RootViewController : UIViewController

@end

89 changes: 89 additions & 0 deletions DemoObjC/RootViewController.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
//
// RootViewController.m
// ToasterDemoObjC
//
// Created by Antoine Cœur on 2019/4/4.
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//

#import "RootViewController.h"
@import Toaster;

@interface RootViewController ()

@end

@interface RespondingButton : UIButton<UIKeyInput>

@property(assign, nonatomic) BOOL hasText;
@property(assign, nonatomic) UITextAutocorrectionType autocorrectionType;

@end

@implementation RootViewController

- (void)viewDidLoad {
[super viewDidLoad];
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[button setTitle:@"Show" forState:UIControlStateNormal];
[button sizeToFit];
[button addTarget:self action:@selector(showButtonTouchUpInside) forControlEvents:UIControlEventTouchUpInside];
button.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
button.center = CGPointMake(self.view.center.x, 75);
[self.view addSubview:button];

RespondingButton *keyboardButton = [RespondingButton buttonWithType:UIButtonTypeSystem];
[keyboardButton setTitle:@"Toggle keyboard" forState:UIControlStateNormal];
[keyboardButton sizeToFit];
[keyboardButton addTarget:self action:@selector(keyboardButtonTouchUpInside:) forControlEvents:UIControlEventTouchUpInside];
keyboardButton.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
keyboardButton.center = CGPointMake(self.view.center.x, 125);
[self.view addSubview:keyboardButton];

[self configureAppearance];
}

- (void)configureAppearance {
ToastView *appearance = [ToastView appearance];
appearance.backgroundColor = UIColor.lightGrayColor;
appearance.textColor = UIColor.blackColor;
appearance.font = [UIFont boldSystemFontOfSize: 16];
appearance.textInsets = UIEdgeInsetsMake(15, 20, 15, 20);
appearance.bottomOffsetPortrait = 100;
appearance.cornerRadius = 20;
}

- (void)showButtonTouchUpInside {
[[[Toast alloc] initWithText:@"Basic Toast" delay:0 duration:Delay.Short] show];
[[[Toast alloc] initWithText:@"You can set duration. `Delay.Short` means 2 seconds.\n`Delay.Long` means 3.5 seconds." delay:0 duration:Delay.Long] show];
[[[Toast alloc] initWithText:@"With delay, Toaster will be shown after delay." delay:1 duration:5] show];
}

- (void)keyboardButtonTouchUpInside:(RespondingButton *)sender {
if (sender.isFirstResponder) {
[sender resignFirstResponder];
} else {
[sender becomeFirstResponder];
}
}

@end

@implementation RespondingButton

- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
self.hasText = YES;
self.autocorrectionType = UITextAutocorrectionTypeNo;
return self;
}

- (BOOL)canBecomeFirstResponder {
return YES;
}

- (void)insertText:(nonnull NSString *)text {}
- (void)deleteBackward {}

@end
16 changes: 16 additions & 0 deletions DemoObjC/main.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// main.m
// ToasterDemoObjC
//
// Created by Antoine Cœur on 2019/4/4.
// Copyright © 2019 Suyeol Jeon. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "AppDelegate.h"

int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
Loading

0 comments on commit 2447635

Please sign in to comment.