Posts

Showing posts from December 19, 2018

Heinrich Scheidemann

Image
Heinrich Scheidemann From Wikipedia, the free encyclopedia Jump to navigation Jump to search Heinrich Scheidemann Heinrich Scheidemann (ca. 1595 – 1663) was a German organist and composer. He was the best-known composer for the organ in north Germany in the early to mid-17th century, and was an important forerunner of Dieterich Buxtehude and J.S. Bach. Contents 1 Life 2 Music and influence 3 Discography 4 References and further reading 5 External links Life [ edit ] He was born in Wöhrden in Holstein. His father was an organist in both Wöhrden and Hamburg, and probably Scheidemann received some early instruction from him. Scheidemann studied with Sweelinck in Amsterdam from 1611 to 1614, and evidently was one of his favorite pupils, since Sweelinck dedicated a canon to him, prior to Scheidemann's return to Germany. By 1629, and possibly earlier, Scheidemann was in Hamburg as org

UICollectionViewCell unrecognized selector sent to instance

Image
up vote 4 down vote favorite I have created a UICollectionViewCell that looks like this #import "PhotoCell.h" @implementation PhotoCell @synthesize imageView; - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.backgroundColor = [UIColor clearColor]; imageView = [[UIImageView alloc] initWithFrame:(CGRect){.origin = CGPointMake(4.0f, 4.0f), .size=CGRectInset(frame, 4.0f, 4.0f).size}]; imageView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; [self.contentView addSubview:imageView]; } return self; } @end I am calling this from one of my view controllers where I am trying to set up a UICollectionView.. this is where I am calling this class - (UICollectionViewCell