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
@implementation UITableViewCell (SeparatoriOS7Fix) | |
- (void)fixSeparator | |
{ | |
UIEdgeInsets insets = self.separatorInset; | |
self.separatorInset = UIEdgeInsetsMake(insets.top, insets.left + 1.0, insets.bottom, insets.right); | |
self.separatorInset = insets; | |
} | |
@end |
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
/* | |
* Copyright (c) 2013 Apple Inc. All rights reserved. | |
* | |
* @APPLE_LICENSE_HEADER_START@ | |
* | |
* This file contains Original Code and/or Modifications of Original Code | |
* as defined in and that are subject to the Apple Public Source License | |
* Version 2.0 (the 'License'). You may not use this file except in | |
* compliance with the License. Please obtain a copy of the License at | |
* http://www.opensource.apple.com/apsl/ and read it before using this |
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
// fragment shader | |
precision lowp float; | |
struct FSInput { | |
vec2 _texcoord; | |
sampler2D _texture; | |
float _opacity; | |
}; | |
struct FSOutput {vec4 _color1;}; |
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
NSMutableString *s = [NSMutableString stringWithString:@"Hello"]; | |
NSSet *set = [NSSet setWithObjects:s, nil]; | |
NSLog(@"%d", [set containsObject:s]); | |
[s appendString:@"BLA"]; | |
NSLog(@"%d", [set containsObject:s]); | |
NSLog(@"%d", [set.allObjects containsObject:s]); |
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
#ifndef CALayer_CAMeshTransform_CALight_h | |
#define CALayer_CAMeshTransform_CALight_h | |
typedef struct CAMeshFace { | |
unsigned int indices[4]; | |
float w[4]; | |
} CAMeshFace; | |
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
/* | |
BCMutableMeshTransform+DemoTransforms.m | |
*/ | |
+ (instancetype)curtainMeshTransformAtPoint:(CGPoint)point boundsSize:(CGSize)boundsSize | |
{ | |
const float Frills = 3; | |
point.x = MIN(point.x, boundsSize.width); | |
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
+ (NSUInteger)lengthOfListWithHead:(ListNode *)node count:(NSUInteger)count { | |
if (!node) | |
return count; | |
else { | |
__unsafe_unretained id n = node.next; | |
return [self lengthOfListWithHead:n count:(count + 1)]; | |
} | |
} |
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
class Counter { | |
let inc : () -> Int | |
let dec : () -> Int | |
init(inc : () -> Int, dec : () -> Int) { | |
self.inc = inc; | |
self.dec = dec; | |
} | |
} | |
func CounterCreator(initial :Int) -> Counter { |