I am making an application in which I need to draw strings in one view, and this should automatically appear in another view. Any help would be appreciated.
I have tried this.
- (void)viewDidLoad { [super viewDidLoad]; slv = [[SmoothLineView alloc] initWithFrame:CGRectMake(DrawingView.bounds.origin.x, DrawingView.bounds.origin.y + 42, DrawingView.bounds.size.width, DrawingView.bounds.size.height - 42)]; slv.delegate = self; [DrawingView addSubview:slv]; } -(IBAction)btnAnotherView:(UIButton *)sender { [zoomingTypingView setUserInteractionEnabled:YES]; if(sender.tag == 123) { [self.view setBackgroundColor:[UIColor colorWithWhite:0.500 alpha:1.000]]; [UIView animateWithDuration:0.5 delay:0.1 options:UIViewAnimationTransitionCurlUp animations:^{
}

In the above image, WhiteColored View is a new view, and if I draw in this whiteColoredView, which should reflect both views.
You can get more information by watching the NOTE TAKER HD APP app.
http://www.youtube.com/watch?v=FdGDnUKZcMM
source share