Select Git revision
Graph2D.cpp
-
Christophe Geuzaine authored
- new alternative Draw_String function taking a "style" argument (used only for font size at the moment) - new Plugin(Annotate) to add simple text strings to a view
Christophe Geuzaine authored- new alternative Draw_String function taking a "style" argument (used only for font size at the moment) - new Plugin(Annotate) to add simple text strings to a view
SplitViewController.mm 1.50 KiB
//
// SplitViewController.m
// Onelab
//
// Created by Maxime Graulich on 05/08/13.
// Copyright (c) 2013 Maxime Graulich. All rights reserved.
//
#import "SplitViewController.h"
@interface SplitViewController ()
@end
@implementation SplitViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
UINavigationController *right = [self.viewControllers objectAtIndex:1]; // right UINavigationController (Detail)
for(UIViewController *v in right.viewControllers){
if ([v isKindOfClass:[ModelViewController class]]) {
modelViewController = (ModelViewController *)v;
}
}
UINavigationController *left = [self.viewControllers objectAtIndex:0]; // left UINavigationController (Master)
for(UIViewController *v in left.viewControllers){
if ([v isKindOfClass:[ParametersViewController class]]) {
parametersViewController = (ParametersViewController *)v;
}
}
self.delegate = modelViewController;
[self setPresentsWithGesture:NO];
}
-(void)viewDidAppear:(BOOL)animated
{
modelViewController.initialModel = self.initialModel;
[super viewDidAppear:animated];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end