1) Могу ли я скачать с интернета файл приложения версии 1, удалить с с iphone и itunes приложение версии 2, закинуть в папку itunes файл приложения 1 и таким образом установить приложение версии 1 на iphone?
2) Как вообще можно установить более старую версию приложения с учетом того что ты его уже покупал?
dispatch_async(dispatch_get_main_queue()) {
self.tableView.reloadData()
}
Интересует сама реализация карточек и процесса скроллинга.
collectionView.collectionViewLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 1;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
...
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
self.leftSpace.constant = 256;
[UIView animateWithDuration:animationDuration animations:^
{
[self.view layoutIfNeeded];
}];
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
self.leftSpace.constant = 0;
[UIView animateWithDuration:animationDuration animations:^
{
[self.view layoutIfNeeded];
}];
}