This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// XDocumentSource.h | |
// Textastic Universal | |
// | |
// Created by Alexander Blach on 01.05.18. | |
// | |
#import <Foundation/Foundation.h> | |
@protocol XDocumentSourceProtocol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> | |
<title>Check AirPod availability in Apple Stores</title> | |
<style> | |
body { | |
font-size: 12px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[self addSymbolMappingWithScopeSelectorString:@"meta.function, meta.method" imageName:@"symbol_list_function"]; | |
[self addSymbolMappingWithScopeSelectorString:@"meta.class, meta.interface-or-protocol" imageName:@"symbol_list_class"]; | |
[self addSymbolMappingWithScopeSelectorString:@"meta.module, meta.directive.module, source meta.implementation entity.name.type" imageName:@"symbol_list_module"]; | |
[self addSymbolMappingWithScopeSelectorString:@"meta.directive.define, meta.preprocessor" imageName:@"symbol_list_define"]; | |
[self addSymbolMappingWithScopeSelectorString:@"meta.tag" imageName:@"symbol_list_tag"]; | |
[self addSymbolMappingWithScopeSelectorString:@"markup.heading" imageName:@"symbol_list_heading"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void) awakeFromNib { | |
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panGesture:)]; | |
[buttonMove addGestureRecognizer:panGesture]; | |
[panGesture release]; | |
} | |
- (void) setupMoveTransform:(BOOL) move { | |
CATransform3D targetTransform = CATransform3DMakeScale(1.1f, 1.1f, 1.0f); | |
targetTransform = CATransform3DTranslate(targetTransform, -6, -6, 0.0f); | |