1) Могу ли я скачать с интернета файл приложения версии 1, удалить с с iphone и itunes приложение версии 2, закинуть в папку itunes файл приложения 1 и таким образом установить приложение версии 1 на iphone?
2) Как вообще можно установить более старую версию приложения с учетом того что ты его уже покупал?
dispatch_async(dispatch_get_main_queue()) {
self.tableView.reloadData()
}
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath)
{
if editingStyle == UITableViewCellEditingStyle.Delete
{
self.tableView.beginUpdates()
person.removeAtIndex(indexPath.row)
self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
self.tableView.endUpdates()
}
}
var arr : [Dictionary<String, String>]
...
arr = [["type":"t", "name":"Name"], ["type":"t", "name":"Name2"]]
Интересует сама реализация карточек и процесса скроллинга.
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];
}];
}