How to implement a view that appears as a calendar on a calendar?

I'm struggling to implement something like a date picker that opens when I add a calendar event in iOS7. Here is an example depicted here . This would be ideal to reduce clutter and maintain context in my application by clicking on a cell and finding more cells or images. I just can't figure it out at all.

Does anyone know how to do this?

Edit: I would like to be a bit abstract so that any view appears when it was selected and remove all other content.

+1
source share
1 answer

, tableView, insertRow, , , . :

-(void)insertRowsAtIndexPaths:(nonnull NSArray<NSIndexPath *> *)indexPaths withRowanimation:(UITableViewRowAnimation)animation

, :

 UITableViewRowAnimationFade

removeSections , .

, , , UITableViewDataSource, - .

0

Source: https://habr.com/ru/post/1541319/


All Articles