0

MainViewController.m&hとFlipsideViewController.m&hを備えたシンプルなユーティリティアプリがあります。ストーリーボード内に、MainViewControllerにボタンがあります。ボタンをクリックしてFlipsideViewController.mでメソッドを実行できるようにしたいのですが、これは可能ですか?これは私の最初のアプリであり、私は完全な初心者です。すべてのコメント/提案を歓迎します。

enter code here

これはFlipsideViewController.mにあります。これは、ボタンをクリックしたときに呼び出したいものです。

- (void)SaveFPQData
{
NSLog(@"Data Saved");
}

これは私がMainViewController.mに持っているものです

- (IBAction)saveButton:(id)sender
{

}

これは私がこれまでに持っているコードです。

MainViewController.h

#import "FlipsideViewController.h"
#import "sqlite3.h"
#import "FPQCheck.h"

@interface MainViewController : UIViewController <FlipsideViewControllerDelegate>

@property (weak, nonatomic) IBOutlet UITextField *nameField;
@property (weak, nonatomic) IBOutlet UITextField *checkField;
@property (weak, nonatomic) IBOutlet UITextField *commentsField;
@property (weak, nonatomic) FlipsideViewController *flipsidecontroller;

- (IBAction)saveButton:(id)sender;
- (IBAction)showHistoryButton:(id)sender;


@end

MainViewController.m

#import "MainViewController.h"
#import "FlipsideViewController.h"
#import "sqlite3.h"


@interface MainViewController ()

@end


@implementation MainViewController

- (void)viewDidLoad
{


[super viewDidLoad];
}

// Do any additional setup after loading the view, typically from a nib.


- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

#pragma mark - Flipside View

- (void)flipsideViewControllerDidFinish:(FlipsideViewController *)controller
{
[self dismissViewControllerAnimated:YES completion:nil];
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showAlternate"]) {
    [[segue destinationViewController] setDelegate:self];
}
}


- (IBAction)saveButton:(id)sender
{
[self.flipsidecontroller SaveFPQData];


//[[NSNotificationCenter defaultCenter] postNotificationName:@"SaveFPQData" object:nil];
}

- (IBAction)showHistoryButton:(id)sender

{

}
@end

FlipSideViewController.h

#import <UIKit/UIKit.h>
#import "FPQCheck.h"

@class FlipsideViewController;

@protocol FlipsideViewControllerDelegate

- (void)flipsideViewControllerDidFinish:(FlipsideViewController *)controller;


@end

@interface FlipsideViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>


@property (weak, nonatomic) IBOutlet UITableView *myTableView;

@property (weak, nonatomic) id <FlipsideViewControllerDelegate> delegate;

-(void)SaveFPQData;


- (IBAction)done:(id)sender;
- (IBAction)deleteEntry:(id)sender;



@end

FlipSideViewController.m

#import "FlipsideViewController.h"
#import "MainViewController.h"


@interface FlipsideViewController ()
{
NSMutableArray *arrayOfCheck;
sqlite3 *fpqDB;
NSString *dbPathString;

}

@end

@implementation FlipsideViewController

- (void)viewDidLoad
{

/*
[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(SaveFPQData)
                                             name:@"SaveFPQData"
                                           object:nil];
 */


[super viewDidLoad];
arrayOfCheck = [[NSMutableArray alloc]init];
[self creatOrOpenDB];
[[self myTableView]setDelegate:self];
[[self myTableView]setDataSource:self];

// Do any additional setup after loading the view, typically from a nib.

}

- (void)SaveFPQData
{
NSLog(@"Data Saved");

}


-(void)creatOrOpenDB
{
NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES);
NSString *docPath = [path objectAtIndex:0];
dbPathString = [docPath stringByAppendingPathComponent:@"FPQ.db"];

char *error;

NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath:dbPathString]) {
    const char *dbPath = [dbPathString UTF8String];

    //create db

    if (sqlite3_open(dbPath, &fpqDB)==SQLITE_OK) {
        const char *sql_stmt = "CREATE TABLE IF NOT EXISTS FPQ (ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT, CHECK INTEGER, COMMENTS TEXT)";
        sqlite3_exec(fpqDB, sql_stmt, NULL, NULL, &error);
        sqlite3_close(fpqDB);            
    }
}
}


- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

#pragma mark - Actions

- (IBAction)done:(id)sender
{
[self.delegate flipsideViewControllerDidFinish:self];}

- (IBAction)deleteEntry:(id)sender {

}


-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
} 

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [arrayOfCheck count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (!cell){
    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}

FPQCheck *fpqCheck = [arrayOfCheck objectAtIndex:indexPath.row];

NSString *nameANDcheck = [NSString stringWithFormat:@"%@%d", fpqCheck.name, fpqCheck.check];

cell.textLabel.text = nameANDcheck;
cell.detailTextLabel.text = fpqCheck.comments;

return cell;

}

@end
4

1 に答える 1

1

主に2つの方法があります。

  1. プロパティ(例:self.flipSideController)をに追加して、 ;MainViewControllerへの参照を保存します。FlipsideViewController次に、それを呼び出しSaveFPQDataます(例[self.flipSideController SaveFPQData];または

  2. 通知センターを使用して、saveButton:そのトリガーからの通知を投稿しますSaveFPQData; これは次のようになります:

    //-- in flipsidecontroller `viewDidLoad`:
    [[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(SaveFPQData)
                                             name:@"SaveFPQData"
                                           object:nil];
    
    //-- in saveButton:
    [[NSNotificationCenter defaultCenter] postNotificationName:@"SaveFPQData" object:nil];
    

2番目の方法は実装が最も簡単なIMOであり、クロックサイクルをいくらか犠牲にして、最も緩い結合を可能にします。

編集:

あなたが何をしようとしているのか完全にはわかりません(具体的には、FlipsideViewControllerが表示されたら、MainViewControllerのボタンを押す方法が完全にはわかりません。一方、FlipsideViewControllerにセグエしない場合は、それからそれはそこにないので、あなたはそれにメッセージを送ることができません)、とにかくあなたはあなたのself.flipsideViewController財産を次のように初期化しようとすることができますprepareForSegue

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
  if ([[segue identifier] isEqualToString:@"showAlternate"]) {
    UIViewController* controller = [segue destinationViewController];
    [controller setDelegate:self];
    if ([controller isKindOfClass:[FlipsideViewController class]])
         self.flipsideViewController = (id)controller;
  }
}

その後、にメッセージをMainViewController送信できるようになります。saveFPQFlipsideViewController

FlipsideViewControllerにセグエするsaveFPQにメッセージを送信したい場合は、メッセージにセグエを作成してメソッドを呼び出す必要があります。saveButtonsaveFPQ

私が思うに、メインビューとフリップサイドビューコントローラーの両方からアクセスできる、ある種の「モデル」オブジェクトが必要です。

お役に立てれば。

于 2013-02-16T21:16:41.820 に答える