문제

I'm trying to create a simple popup called Add Notes on a button click which has a save and cancel button to save the notes created by the user and to cancel the pop-up. This is pop-up classes

AddNotesPopUp.h

#import <UIKit/UIKit.h>
#import "UIImage+Buttons.h"


typedef enum AddNotesViewType
{
    AddNotesPopUpSimple
}AddNotesPopUpType;

@protocol AddNotesDelegate<NSObject>

@optional
-(void)saveButtonClicked:(id) popUp;
-(void)cancelAddButtonClicked:(id)popUp;
@end

@interface AddNotesPopUp : UIView

@property AddNotesPopUpType atype;
@property (nonatomic,assign) id <AddNotesDelegate> delegate;

-(id)initWithDelegate:(id)parent type:(AddNotesPopUpType) type;

@property (weak, nonatomic) IBOutlet UIView *popView;
@property (strong, nonatomic) IBOutlet UIButton *titleButton;


@property (weak, nonatomic) IBOutlet UIButton *cancelAddButton;
@property (weak, nonatomic) IBOutlet UIButton *saveButton;
@property (weak, nonatomic) IBOutlet UITextView *textArea;


- (IBAction)saveButtonAction:(id)sender;

- (IBAction)cancelButtonAction:(id)sender;

-(void)show;
-(void)hide;

@end

AddNotesPopUp.m

#import "AddNotesPopUp.h"
#import <QuartzCore/QuartzCore.h>


@implementation AddNotesPopUp

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        self=(AddNotesPopUp*)[[[NSBundle mainBundle] loadNibNamed:@"AddNotesPopUp" owner:nil options:nil] lastObject];
    }
    return self;
}
-(id)initWithDelegate:(id)parent type:(AddNotesPopUpType) type
{

    if (self = [super initWithFrame:CGRectMake(0, 0, 300, 300)])
    {
        // Initialization code
          self=(AddNotesPopUp*)[[[NSBundle mainBundle] loadNibNamed:@"AddNotesPopUp" owner:nil options:nil] lastObject];
    }
    self.delegate=parent;
    self.atype=type;
    UIViewController *parentView=(UIViewController*)parent;
    [parentView.view addSubview:self];
         if (type==AddNotesPopUpSimple)
        {
    [self.titleButton setImage:[UIImage buttonWithText:@"Add Notes" fontSize:15 bold:YES buttonSize:self.titleButton.frame.size baseColor:[UIColor colorWithRed:73.0/255.0 green:90.0/255.0 blue:100.0/255.0 alpha:1] downTo:[UIColor colorWithRed:57.0/255.0 green:70.0/255.0 blue:77.0/255.0 alpha:1]] forState:UIControlStateNormal];
    [self.saveButton setImage:[UIImage buttonWithTextAlignCenter:@"Save" fontSize:15 bold:YES buttonSize:self.saveButton.frame.size baseColor:[UIColor colorWithRed:117.0/255.0 green:185.0/255.0 blue:83.0/255.0 alpha:1] downTo:[UIColor colorWithRed:95.0/255.0 green:144.0/255.0 blue:64.0/255.0 alpha:1]] forState:UIControlStateNormal];
    [self.cancelAddButton setImage:[UIImage buttonWithTextAlignCenter:@"Cancel" fontSize:15 bold:YES buttonSize:self.cancelAddButton.frame.size baseColor:[UIColor colorWithRed:174.0/255.0 green:174.0/255.0 blue:174.0/255.0 alpha:1] downTo:[UIColor colorWithRed:124.0/255.0 green:124.0/255.0 blue:124.0/255.0 alpha:1]] forState:UIControlStateNormal];
        }


    self.popView.layer.masksToBounds=YES;
    self.popView.layer.cornerRadius=5.0f;
    self.popView.layer.borderWidth=1.0f;
    self.popView.layer.borderColor=[[UIColor blackColor]CGColor];
    self.popView.hidden=YES;


    self.hidden=YES;
    self.textArea.hidden=YES;


    return self;
}

-(void)show
{
    self.popView.hidden=NO;
    self.textArea.hidden=NO;
    [self.popView setTransform:CGAffineTransformMakeScale(0.1,0.1)];
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.25];
    [self.popView setTransform:CGAffineTransformMakeScale(1.0,1.0)];
    [UIView commitAnimations];


}

-(void) hide
{
    self.popView.hidden=YES;
}

- (IBAction)saveButtonAction:(id)sender {
    [self.delegate saveButtonClicked:self];
}

- (IBAction)cancelButtonAction:(id)sender {

    [self.delegate cancelAddButtonClicked:self];
}
@end

This is how I call the popup in my viewcontroller button action

- (IBAction)addNotes:(id)sender {

    AddNotesPopUp *pop=[[AddNotesPopUp alloc] initWithDelegate:self type:AddNotesPopUpSimple];
    [pop show];
}

I have checked with breakpoints and the execution goes successfully through the initwithDelegate and show methods in AddNotesPopUp.m but the pop-up doesnt appears, what am I missing here? I have added the delegates and classes of AddNotesPopUp in my viewcontroller and I dont receive any error either. I'm using Xcode 4.6. Any Suggestions?

도움이 되었습니까?

해결책

Turns out it was a simple issue, I just needed to add self.hidden=NO; in the show method

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top