CCOfflinePageContent.m 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. //
  2. // CCOfflinePageContent.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/02/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. #import "CCOfflinePageContent.h"
  9. @interface CCOfflinePageContent ()
  10. @end
  11. @implementation CCOfflinePageContent
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. }
  15. // Apparirà
  16. - (void)viewWillAppear:(BOOL)animated
  17. {
  18. [super viewWillAppear:animated];
  19. }
  20. - (void)didReceiveMemoryWarning {
  21. [super didReceiveMemoryWarning];
  22. // Dispose of any resources that can be recreated.
  23. }
  24. #pragma mark - Table view data source
  25. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  26. #warning Incomplete implementation, return the number of sections
  27. return 0;
  28. }
  29. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  30. #warning Incomplete implementation, return the number of rows
  31. return 0;
  32. }
  33. /*
  34. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  35. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:<#@"reuseIdentifier"#> forIndexPath:indexPath];
  36. // Configure the cell...
  37. return cell;
  38. }
  39. */
  40. /*
  41. // Override to support conditional editing of the table view.
  42. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
  43. // Return NO if you do not want the specified item to be editable.
  44. return YES;
  45. }
  46. */
  47. /*
  48. // Override to support editing the table view.
  49. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  50. if (editingStyle == UITableViewCellEditingStyleDelete) {
  51. // Delete the row from the data source
  52. [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
  53. } else if (editingStyle == UITableViewCellEditingStyleInsert) {
  54. // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
  55. }
  56. }
  57. */
  58. /*
  59. // Override to support rearranging the table view.
  60. - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
  61. }
  62. */
  63. /*
  64. // Override to support conditional rearranging of the table view.
  65. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
  66. // Return NO if you do not want the item to be re-orderable.
  67. return YES;
  68. }
  69. */
  70. /*
  71. #pragma mark - Navigation
  72. // In a storyboard-based application, you will often want to do a little preparation before navigation
  73. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  74. // Get the new view controller using [segue destinationViewController].
  75. // Pass the selected object to the new view controller.
  76. }
  77. */
  78. @end