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
#!/bin/bash | |
# Setup should be fairly standard for wine | |
# | |
# Install wine version > 5.4 | |
# Install winetricks | |
# > sudo dnf -y install win winetricks | |
# | |
# For the moment I have assumed the default WINEPREFIX | |
# > winetricks dotnet35sp1 win7 |
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 "TimePickerInputTableViewCell.h" | |
#import "DataFormatters.h" | |
@implementation TimePickerInputTableViewCell | |
@synthesize delegate= _delegate; | |
@synthesize time = _time; | |
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier | |
{ |
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
// | |
// TFLog.h | |
// | |
// Created by Tom Fewster on 08/06/2010. | |
// | |
#if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR | |
# import <UIKit/UIKit.h> | |
#else | |
# import <Cocoa/Cocoa.h> |