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
#import "REDRangeSlider.h" | |
@interface REDViewController () | |
@property (strong, nonatomic) REDRangeSlider *rangeSlider; | |
- (void)updateSliderLabels; | |
- (void)rangeSliderValueChanged:(id)sender; |
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
Process: Gitbox [5458] | |
Path: /Applications/Gitbox.app/Contents/MacOS/Gitbox | |
Identifier: com.oleganza.gitbox | |
Version: 1.6.3 (1.6.3) | |
App Item ID: 403388357 | |
App External ID: 7447947 | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [231] | |
User ID: 501 |
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
tell application "Spotify Queue" | |
pause | |
end tell |
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
tell application "Spotify Queue" | |
play | |
end tell |
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
tell application "Spotify Queue" | |
addTrack "spotify:track:3iPR2xFG7CTREJTNMSvw74" | |
end tell |
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
// | |
// RDViewController.m | |
// RDActionSheet | |
// | |
// Created by Red Davis on 16/03/2012. | |
// Copyright (c) 2012 Red Davis. All rights reserved. | |
// | |
#import "RDViewController.h" |
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
// | |
// RDViewController.m | |
// RDActionSheet | |
// | |
// Created by Red Davis on 16/03/2012. | |
// Copyright (c) 2012 Red Davis. All rights reserved. | |
// | |
#import "RDViewController.h" |
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
// | |
// RDViewController.m | |
// RDNotificationExample | |
// | |
// Created by Red Davis on 22/04/2012. | |
// Copyright (c) 2012 Red Davis. All rights reserved. | |
// | |
#import "RDViewController.h" | |
#import "RDNotification.h" |
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
// | |
// RDViewController.h | |
// RDActionSheet | |
// | |
// Created by Red Davis on 16/03/2012. | |
// Copyright (c) 2012 Red Davis. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
#import "RDActionSheet.h" |
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
#import <UIKit/UIKit.h> | |
#import "RDActionSheet.h" | |
@interface RDViewController : UIViewController <RDActionSheetDelegate> | |
@property (nonatomic, strong) IBOutlet UIButton *showActionSheetButton; | |
- (IBAction)showActionSheet:(id)sender; | |
@end |