Skip to content

Instantly share code, notes, and snippets.

@TheCodeEngine
TheCodeEngine / UIButton
Last active October 10, 2015 23:28
UIButton programmatically
UIButton *myButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
myButton.frame = CGRectMake(20, 20, 200, 44); // position in the parent view and set the size of the button
[myButton setTitle:@"Click Me!" forState:UIControlStateNormal];
// add targets and actions
[myButton addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
// add to a view
[self.view addSubview:myButton];
@TheCodeEngine
TheCodeEngine / iOS Angle
Last active October 10, 2015 23:28
Neigen um einen bestimmten Winkel
float angle = 90 * (3.14 / 100);
CGAffineTransform transform = CGAffineTransformMakeRotation(angle);
button.transform = transform;
@TheCodeEngine
TheCodeEngine / UILabel text size in pixel
Created September 22, 2012 19:21
UILabel text Size in Pixel
CGSize textSize = [[label text] sizeWithFont:[label font]];
@TheCodeEngine
TheCodeEngine / CATransition Quartz.c
Last active October 11, 2015 00:08
CATransition Animation Quartz
CATransition *animation = [CATransition animation];
animation.delegate = self;
animation.duration = 0.5f;
animation.type = kCATransitionMoveIn;
animation.subtype = kCATransitionFromTop;
[self.view.layer addAnimation:animation forKey:@"animation"];
@TheCodeEngine
TheCodeEngine / Animation Block.c
Last active October 11, 2015 00:08
Animation Block
typedef void (^AnimationBlock)(void);
typedef void (^CompletionBlock)(BOOL finished);
//
// AnimationBlock
AnimationBlock first = ^(void){
self.transform = CGAffineTransformMakeScale(0.5f, 0.5f);
};
AnimationBlock second = ^(void){
self.transform = CGAffineTransformMakeScale(1.15f, 1.15f);
@TheCodeEngine
TheCodeEngine / CoreGraphics UIImage.c
Last active October 11, 2015 00:08
Build wit CoreGraphics UIImage
- (UIImage*) buildSwatch: (int) aBrightness
{
CGRect rect = CGRectMake(0.0f, 0.0f, 30.0f, 30.0f);
UIGraphicsBeginImageContext(rect.size);
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:4.0f];
[[[UIColor blackColor] colorWithAlphaComponent:(float) aBrightness / 10.0f] set];
[path fill];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
@TheCodeEngine
TheCodeEngine / UIView roundCorner.h
Last active October 11, 2015 00:08
UIView add round Corner
#import <QuartzCore/QuartzCore.h>
[v.layer setCornerRadius:25.0f];
[v.layer setMasksToBounds:YES];
@TheCodeEngine
TheCodeEngine / iOSCGContextAddArc Kreis.h
Last active October 11, 2015 00:28
CGContextAddArc, Kreis zeichnen
CGFloat startDeg = 0;
CGFloat endDeg = 360;
CGContextAddArc(context, 100.0, 100.0, 90.0, (startDeg-90)*M_PI/180.0, (endDeg-90)*M_PI/180.0, 0);
@TheCodeEngine
TheCodeEngine / iOS AutoRotate.h
Last active April 9, 2018 10:51
Auto Rotate
- (BOOL)shouldAutorotate {
return YES;
}
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
// Move the Labels into place
switch ([UIDevice currentDevice].orientation) {
case UIDeviceOrientationLandscapeLeft:
case UIDeviceOrientationLandscapeRight:
{
@TheCodeEngine
TheCodeEngine / CALayer Shine.c
Last active October 11, 2015 01:18
Shine Effect CALayer, you need QuartzCore
clock.layer.shadowColor = [[UIColor redColor] CGColor];
clock.layer.shadowRadius = 4.0f;
clock.layer.shadowOpacity = 0.9f;
clock.layer.shadowOffset = CGSizeZero;
clock.layer.masksToBounds = NO;