我之前问过一个关于如何使用 unWind segue 传递数据的问题。但是我认为不可能使用它。
有谁知道如何将数据从 ViewController B 传递回 ViewController A?在我的代码中,我想要数据,让我们说一个要传回的双精度数。所以我想要一个双从'BIDAddTypeOfDealViewController'到BIDDCCreateViewController。
就这样我很清楚,因为上次有混乱。用户编辑 viewController B,我希望将编辑后的数据返回到 ViewController A 中,然后在其中使用它。
我已经尝试了多个示例,但仍然无法做到。我已经花了几天时间尝试仍然没有成功。
任何帮助是极大的赞赏。
#import <UIKit/UIKit.h>
@interface BIDDCCreateViewController : UIViewController
@property (strong, nonatomic) NSString *placeId;
@end
#import "BIDDCCreateViewController.h"
@implementation BIDDCCreateViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
NSLog(@"SUCCESSFULLY PASSED PLACE ID: %@", self.placeId);
}
@end
#import <UIKit/UIKit.h>
@interface BIDAddTypeOfDealViewController : UIViewController <UITextFieldDelegate>
- (IBAction)chooseDiscountDeal:(id)sender;
@end
#import "BIDAddTypeOfDealViewController.h"
#import "BIDDCCreateViewController.h"
@interface BIDAddTypeOfDealViewController ()
@end
@implementation BIDAddTypeOfDealViewController
-(void) chooseDiscountDeal:(id)sender
{
//pass back double
}
@end