-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuNode.h
More file actions
42 lines (33 loc) · 997 Bytes
/
Copy pathMenuNode.h
File metadata and controls
42 lines (33 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// containerView.h
// ProjetoFinal
//
// Created by Henrique Pereira de Lima on 15/09/14.
// Copyright (c) 2014 SENAC - iOS. All rights reserved.
//
#import <SpriteKit/SpriteKit.h>
#import "IconeSecao.h"
#import "SessaoMenu.h"
#import "SecaoMenuVariavel.h"
#import "SecaoMenuOperador.h"
@protocol MenuNodeDelegate <NSObject>
- (NSMutableArray *)criarIconesVetorInfo:(NSMutableArray *)vetorInfoIcones categoria:(NSString *)categoria;
@end
@interface MenuNode : SKSpriteNode <SessaoMenuDelegate>
{
UIScrollView *scroll;
UIView *viewFundoScroll;
}
@property UIGestureRecognizer *panGesture;
@property NSMutableArray *imagensIcones;
@property id <MenuNodeDelegate> myDelegate;
- (void)abrirFechar;
- (id)initWithPosicaoAbrir : (CGPoint)abrir tamanho:(CGSize)tamanho;
- (BOOL)getAberto;
- (void)removeTudo;
- (NSMutableArray *)retornaSessoes;
-(void)insereTodosIcones;
-(UIScrollView *)getScroll;
-(void)setScroll:(UIScrollView *)scrollView;
-(UIView*)getViewFundoScroll;
@end