mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-06 06:29:32 +08:00
19 lines
334 B
Objective-C
Executable File
19 lines
334 B
Objective-C
Executable File
//
|
|
// ViewController.m
|
|
// Messenger
|
|
//
|
|
// Created by Ignacio Romero Z. on 4/8/15.
|
|
// Copyright (c) 2015 Slack Technologies, Inc. All rights reserved.
|
|
//
|
|
|
|
#import "ViewController.h"
|
|
|
|
@implementation ViewController
|
|
|
|
- (IBAction)showMessages:(id)sender
|
|
{
|
|
[self performSegueWithIdentifier:@"show_messages" sender:sender];
|
|
}
|
|
|
|
@end
|