This file contains hidden or 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
| - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
| { | |
| NSString *cellIdentifier = @"Cell1"; //static unedded here because constanst are optimized | |
| UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; | |
| if (cell == nil) { | |
| cell= [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier]; | |
| } | |
| if ([self _isSearchActive])// self.searchController.isActive | |
| { |
This file contains hidden or 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
| // | |
| // RSTimingFunction.h | |
| // | |
| // Created by Raphael Schaad on 2013-09-28. | |
| // This is free and unencumbered software released into the public domain. | |
| // | |
| #import <Foundation/Foundation.h> |
This file contains hidden or 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
| // | |
| // NSArray+BinarySearch.h | |
| // BinarySearch | |
| // | |
| // Created by Ole Begemann on 19.04.10. | |
| // Copyright 2010 Ole Begemann. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |