Кнопки не работают - PullRequest
       19

Кнопки не работают

0 голосов
/ 07 октября 2011

У меня есть UINavigationBar с кнопками, которые были созданы с помощью пользовательского представления.Я добавил цель с селектором для каждой кнопки, но кнопки не реагируют на селектор.Вы можете мне помочь?

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self.navigationItem setTitle:@"Title"];

    // create custom view
    container = [[UIView alloc] init];
    [container setUserInteractionEnabled:TRUE];

    NSString *path;
    // create 2 buttons and put in a custom view
    buttonList = [[UIButton alloc] init];
    path = [[NSBundle mainBundle] pathForResource:@"dotActive" ofType:@"png"];
    UIImage *imgList = [[[UIImage alloc] initWithContentsOfFile:path] autorelease];
    path = [[NSBundle mainBundle] pathForResource:@"dotInactive" ofType:@"png"];
    UIImage *imgListPrs = [[[UIImage alloc] initWithContentsOfFile:path] autorelease];
    [buttonList setImage:imgListPrs forState:UIControlStateSelected];
    [buttonList setSelected:TRUE];
    [buttonList setFrame:CGRectMake(-30, 0, imgList.size.width, imgList.size.height)];
    [buttonList setImage:imgList forState:UIControlStateNormal];
    [container addSubview:buttonList];
    [buttonList addTarget:self action:@selector(changeType:) forControlEvents:UIControlEventTouchUpInside];
    [buttonList setUserInteractionEnabled:TRUE];


    buttonPic = [[UIButton alloc] init];
    path = [[NSBundle mainBundle] pathForResource:@"dotActive" ofType:@"png"];
    UIImage *imgPic = [[[UIImage alloc] initWithContentsOfFile:path] autorelease];
    path = [[NSBundle mainBundle] pathForResource:@"dotInactive" ofType:@"png"];
    UIImage *imgPicPrs = [[[UIImage alloc] initWithContentsOfFile:path] autorelease];
    [buttonPic setImage:imgPicPrs forState:UIControlStateSelected];
    [buttonPic setFrame:CGRectMake(-10, 0, imgPic.size.width, imgPic.size.height)];
    [buttonPic setImage:imgPic forState:UIControlStateNormal];
    [container addSubview:buttonPic];
    [buttonPic addTarget:self action:@selector(changeType:) forControlEvents:UIControlEventTouchUpInside];
    [buttonPic setUserInteractionEnabled:TRUE];

    // create UIBarButtonItem with a custom view
    UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:container];

    // put item on navigation bar
    [self.navigationItem setRightBarButtonItem:item];
}

Ответы [ 2 ]

1 голос
/ 07 октября 2011

Извините, Света,

Я не видел ваш полный код. Проверьте это. Это будет работать для вас.

- (void)viewDidLoad{

[super viewDidLoad];

[self.navigationItem setTitle:@"Title"];

    // create custom view
UIView *container = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 250, 30)];
[container setUserInteractionEnabled:TRUE];

    // create 2 buttons and put in a custom view
UIButton *buttonList = [[UIButton alloc] init];
[buttonList setSelected:TRUE];
[buttonList setBackgroundColor:[UIColor redColor]];

[buttonList setFrame:CGRectMake(0, 0, 30.0, 30.0)];
[container addSubview:buttonList];
[buttonList addTarget:self action:@selector(changeType:) forControlEvents:UIControlEventTouchUpInside];
[buttonList setUserInteractionEnabled:TRUE];
[buttonList release];


UIButton *buttonPic = [[UIButton alloc] init];
[buttonPic setFrame:CGRectMake(40.0, 0, 30.0, 30.0)];
[buttonPic setBackgroundColor:[UIColor blueColor]];
[container addSubview:buttonPic];
[buttonPic addTarget:self action:@selector(changeType:) forControlEvents:UIControlEventTouchUpInside];
[buttonPic setUserInteractionEnabled:TRUE];
[buttonPic release];

    // create UIBarButtonItem with a custom view
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:container];

    // put item on navigation bar
[self.navigationItem setRightBarButtonItem:item];
}

- (void)changeType:(id)sender
{
     NSLog(@"Change Type");
}

В Appdelegate добавьте этот код

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.

    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:self.viewController]; 
    self.window.rootViewController = navController;
    [self.window makeKeyAndVisible];
    [navController release]; 
    return YES;
}
0 голосов
/ 07 октября 2011

Я никогда не делал это программно.

Не могли бы вы опубликовать свой changeType?

Он может выглядеть как

-(void)changeType:(id)sender {
// doing something here
}

и должен быть объявлен в разделе интерфейса;

Также вы можете поставить точку останова, чтобы посмотреть, вызывается ли она вообще.И посмотрите значение переменных.Пожалуйста, проверьте, звонил ли он.

РЕДАКТИРОВАТЬ:

Ниже моего кода, который вы можете вставить в созданное по умолчанию приложение для навигации:

на RootViewController.m:

- (void)viewDidLoad
{
    [super viewDidLoad];

    UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
    [infoButton addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *tmpInfoButton = [[UIBarButtonItem alloc] initWithCustomView:infoButton];
    self.navigationItem.rightBarButtonItem = tmpInfoButton;
    [tmpInfoButton release];

}

-(void)buttonPressed:(id)sender {
    NSLog(@"Button pressed...");
}

в RootViewController.h:

-(void)buttonPressed:(id)sender;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...