Code Monkey home page Code Monkey logo

Comments (2)

arturdev avatar arturdev commented on July 1, 2024

Unfortunately I can't make that in the nearest future.
But as fast solution I suggest you to do a little hack on your left menu to be able to use it as usual uiviewcontroller.
In your left menu tableViewController's implementation file:

@interface LeftMenuVC()

// Add this property to hold real tableview of this TableViewController
@property (strong, nonatomic) UITableView *myTableView;

@end

@implementation LeftMenuTVC

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self customize];
}

- (void)customize
{
     [self transformThisTVCtoVC]; //little hack

    //Add your subviews. This subviews will not scroll with tableview (i.e. will stick in their place).
    UIView *topView = ... // your top view
   [self.view addSubiew:topView];

    CGRect tableFrame = self.myTableView.frame;
    tableFrame.origin.Y = topView.frame.size.height + someMargin; 
    self.myTableView.frame = tableFrame;   

    UIView *bottomView = ... // your bottom view
   CGRect frame = bottomView.frame;
   frame.origin.Y = self.myTableView.frame.origin.Y + self.myTableView.frame.size.height + someMargin;
   [self.view addSubiew:bottomView];
}

- (void)transformThisTVCtoVC
{
    self.myTableView = self.tableView;

    self.view = [[UIView alloc] initWithFrame:self.view.bounds];
    self.view.backgroundColor = self.myTableView.backgroundColor;
    [self.view addSubview:self.myTableView];    
}

//...

@end

from amslidemenu2.

huyaloha avatar huyaloha commented on July 1, 2024

Thanks for your recommendation. However, I have found my own way to do by using tableHeaderView and tableFooterView for top and bottomView. For the other cells, I create another UITableView in a cell of parent tableview then disable the scrollable of parent table.

Anyway, It is better to use left and right view as UIViewController rather than UITableViewController due to the flexibility and customisable.

Cheers

from amslidemenu2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.