Tarte Tatin

  • 3 jablka
  • hnědý cukr
  • kousek másla
  • listové těsto (není to originál, ale to nevadí)
  • keramický  pekáček na Tarte Tatin
Postup
Do pekáčku nasypeme vrstvu cukru, na ni pár tenkých plátků másla. Nakrájíme jablka na měsíčky, zasypeme mírně cukrem a dáme do trouby na 200oC péct (aby cukr zkaramerizoval). Po cca 10min vytáhneme, položíme těsto, pořádně utlačíme po krajích, propícháme vidličkou a dáme dopéct dozlatova. Po vytažení ihned překlopíme na talíř.
PS: pro originální těsto “Pâte brisée”:
  • 125g polohrubé mouky
  • 1/2 lžičky soli
  • 100g zchlazeného másla, nakrájeného na kostičky
  • 1 žloutek
  • 2–3 lžíce ledové vody

Custom UINavigationBar with image and back button

@implementation UINavigationBar (UINavigationBarCustomDraw)

- (void) drawRect:(CGRect)rect {
     
     [self setTintColor:[UIColor colorWithRed:0.5f
                                    green: 0.5f
                                    blue:0 
                                    alpha:1]];
     
     if ([self.topItem.title length] > 0 && ![self.topItem.title isEqualToString:@"Back to ..."]) {
          [[UIImage imageNamed:@"Header_1px.png"] drawInRect:rect];
          
          CGRect frame = CGRectMake(0, 0, 320, 44);
          UILabel *label = [[[UILabel alloc] initWithFrame:frame] autorelease];
          [label setBackgroundColor:[UIColor clearColor]];
          label.font = [UIFont boldSystemFontOfSize: 20.0];
          label.shadowColor = [UIColor colorWithWhite:0.0 alpha:1];
          label.textAlignment = UITextAlignmentCenter;
          label.textColor = [UIColor whiteColor];
          label.text = self.topItem.title;
          self.topItem.titleView = label;
          
     } else {
               [[UIImage imageNamed:"Header.png"] drawInRect:rect];
               self.topItem.titleView = [[[UIView alloc] init] autorelease];
     }
}

@end

source: http://www.developers-life.com/custom-uinavigationbar-with-image-and-back-button.html

uitableviewcell – custom background when selected

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
        cell.selectedBackgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SelectedCellBackground.png"]] autorelease];
    }

    // configure the cell
}