- Горизонтальный режим просмотра постов, когда заходишь из плитки (из публичной ленты и из своей)
- У видео-постов появилась иконка видео в лентах
- В публичном посте появилась кнопка создать пост вверху справа
- Экраны Еще-нет-постов добавлены, но еще не переведены и не до конца работают кнопки
- В промо-постах появились кнопки, они не до конца оформлены: должны исчезать, когда тянешь пост; в ссылку не кодируется информация о пользователе; можно добавить анимацию
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
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath | |
{ | |
return [self heightForBasicCellAtIndexPath:indexPath]; | |
} | |
- (CGFloat)heightForBasicCellAtIndexPath:(NSIndexPath *)indexPath { | |
Post *post = self.fetchedResultsController.fetchedObjects[indexPath.section]; | |
if(post.text && post.text.length <= 0){ |
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
- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller | |
{ | |
self.shouldReloadCollectionView = NO; | |
self.blockOperation = [[NSBlockOperation alloc] init]; | |
} | |
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id<NSFetchedResultsSectionInfo>)sectionInfo | |
atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type | |
{ | |
__weak UICollectionView *collectionView = self.collectionView; |
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
Задача: Вывод в отладчике расширенных данных по вью | |
Решение: expr @import UIKit; | |
--- |