আমার দুটি রয়েছে UITableViewControllers
এবং চাইল্ড ভিউ কন্ট্রোলার থেকে একটি প্রতিনিধি ব্যবহার করে পিতামাতার কাছে মানটি পাঠাতে হবে। আমি জানি প্রতিনিধিরা কী এবং কেবল উদাহরণ অনুসরণ করার জন্য একটি সাধারণ দেখতে চেয়েছিলেন।
ধন্যবাদ
আমার দুটি রয়েছে UITableViewControllers
এবং চাইল্ড ভিউ কন্ট্রোলার থেকে একটি প্রতিনিধি ব্যবহার করে পিতামাতার কাছে মানটি পাঠাতে হবে। আমি জানি প্রতিনিধিরা কী এবং কেবল উদাহরণ অনুসরণ করার জন্য একটি সাধারণ দেখতে চেয়েছিলেন।
ধন্যবাদ
উত্তর:
সাধারণ উদাহরণ ...
ধরা যাক চাইল্ড ভিউ কন্ট্রোলারের একটি রয়েছে UISlider
এবং আমরা একটি প্রতিনিধিের মাধ্যমে স্লাইডারের মানটি পিতামাতার কাছে ফিরে যেতে চাই।
চাইল্ড ভিউ কন্ট্রোলারের হেডার ফাইলটিতে, প্রতিনিধি প্রকার এবং এর পদ্ধতিগুলি ঘোষণা করুন:
ChildViewController.h
#import <UIKit/UIKit.h>
// 1. Forward declaration of ChildViewControllerDelegate - this just declares
// that a ChildViewControllerDelegate type exists so that we can use it
// later.
@protocol ChildViewControllerDelegate;
// 2. Declaration of the view controller class, as usual
@interface ChildViewController : UIViewController
// Delegate properties should always be weak references
// See http://stackoverflow.com/a/4796131/263871 for the rationale
// (Tip: If you're not using ARC, use `assign` instead of `weak`)
@property (nonatomic, weak) id<ChildViewControllerDelegate> delegate;
// A simple IBAction method that I'll associate with a close button in
// the UI. We'll call the delegate's childViewController:didChooseValue:
// method inside this handler.
- (IBAction)handleCloseButton:(id)sender;
@end
// 3. Definition of the delegate's interface
@protocol ChildViewControllerDelegate <NSObject>
- (void)childViewController:(ChildViewController*)viewController
didChooseValue:(CGFloat)value;
@end
চাইল্ড ভিউ কন্ট্রোলারের প্রয়োগে, ডেলিগেট পদ্ধতিগুলি প্রয়োজনীয় হিসাবে কল করুন।
ChildViewController.m
#import "ChildViewController.h"
@implementation ChildViewController
- (void)handleCloseButton:(id)sender {
// Xcode will complain if we access a weak property more than
// once here, since it could in theory be nilled between accesses
// leading to unpredictable results. So we'll start by taking
// a local, strong reference to the delegate.
id<ChildViewControllerDelegate> strongDelegate = self.delegate;
// Our delegate method is optional, so we should
// check that the delegate implements it
if ([strongDelegate respondsToSelector:@selector(childViewController:didChooseValue:)]) {
[strongDelegate childViewController:self didChooseValue:self.slider.value];
}
}
@end
প্যারেন্ট ভিউ কন্ট্রোলারের হেডার ফাইলটিতে, ঘোষণা করুন যে এটি ChildViewControllerDelegate
প্রোটোকল প্রয়োগ করে ।
RootViewController.h
#import <UIKit/UIKit.h>
#import "ChildViewController.h"
@interface RootViewController : UITableViewController <ChildViewControllerDelegate>
@end
প্যারেন্ট ভিউ কন্ট্রোলারের প্রয়োগে, প্রতিনিধি পদ্ধতিগুলি যথাযথভাবে প্রয়োগ করুন।
RootViewController.m
#import "RootViewController.h"
@implementation RootViewController
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ChildViewController *detailViewController = [[ChildViewController alloc] init];
// Assign self as the delegate for the child view controller
detailViewController.delegate = self;
[self.navigationController pushViewController:detailViewController animated:YES];
}
// Implement the delegate methods for ChildViewControllerDelegate
- (void)childViewController:(ChildViewController *)viewController didChooseValue:(CGFloat)value {
// Do something with value...
// ...then dismiss the child view controller
[self.navigationController popViewControllerAnimated:YES];
}
@end
আশাকরি এটা সাহায্য করবে!
detailViewController.delegate = self;
(এটি -tableView:didSelectRowAtIndexPath:
উপরের কোড স্নিপেটে রয়েছে
এই নীচের কোডটি কেবল প্রতিনিধি ধারণার খুব প্রাথমিক ব্যবহার দেখায় .. আপনি আপনার প্রয়োজন অনুসারে ভেরিয়েবল এবং ক্লাসের নাম দেন।
প্রথমে আপনাকে একটি প্রোটোকল ঘোষণা করতে হবে:
আসুন একে MyFirstControllerDelegate.h বলি
@protocol MyFirstControllerDelegate
- (void) FunctionOne: (MyDataOne*) dataOne;
- (void) FunctionTwo: (MyDatatwo*) dataTwo;
@end
MyFirstControllerDelegate.h ফাইলটি আমদানি করুন এবং প্রোটোকল মাই ফার্স্টকন্ট্রোলারডেলিগেটের সাহায্যে আপনার প্রথম নিয়ন্ত্রণকারীকে নিশ্চিত করুন
#import "MyFirstControllerDelegate.h"
@interface FirstController : UIViewController<MyFirstControllerDelegate>
{
}
@end
বাস্তবায়ন ফাইলে, আপনাকে প্রোটোকলের উভয় ফাংশন প্রয়োগ করতে হবে:
@implementation FirstController
- (void) FunctionOne: (MyDataOne*) dataOne
{
//Put your finction code here
}
- (void) FunctionTwo: (MyDatatwo*) dataTwo
{
//Put your finction code here
}
//Call below function from your code
-(void) CreateSecondController
{
SecondController *mySecondController = [SecondController alloc] initWithSomeData:.];
//..... push second controller into navigation stack
mySecondController.delegate = self ;
[mySecondController release];
}
@end
আপনার দ্বিতীয় নিয়ন্ত্রণকারীতে :
@interface SecondController:<UIViewController>
{
id <MyFirstControllerDelegate> delegate;
}
@property (nonatomic,assign) id <MyFirstControllerDelegate> delegate;
@end
সেকেন্ডকন্ট্রোলারের বাস্তবায়ন ফাইলে ।
@implementation SecondController
@synthesize delegate;
//Call below two function on self.
-(void) SendOneDataToFirstController
{
[delegate FunctionOne:myDataOne];
}
-(void) SendSecondDataToFirstController
{
[delegate FunctionTwo:myDataSecond];
}
@end
প্রতিনিধি সম্পর্কিত উইকি নিবন্ধটি এখানে is
প্রতিনিধি ব্যবহার করে ভিসি 2 থেকে ভিসি 1 তে ডেটা প্রেরণের জন্য নিম্নলিখিত সমাধানটি খুব বেসিক এবং সাধারণ পদ্ধতির।
পিএস: এই দ্রবণটি এক্সকোড 9. এক্স এবং সুইফ্ট 4-এ তৈরি করা হয়েছে
একটি প্রোটোকল ঘোষণা করে এবং একটি নির্মিত প্রতিনিধি মধ্যে Var ViewControllerB
import UIKit
//Declare the Protocol into your SecondVC
protocol DataDelegate {
func sendData(data : String)
}
class ViewControllerB : UIViewController {
//Declare the delegate property in your SecondVC
var delegate : DataDelegate?
var data : String = "Send data to ViewControllerA."
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func btnSendDataPushed(_ sender: UIButton) {
// Call the delegate method from SecondVC
self.delegate?.sendData(data:self.data)
dismiss(animated: true, completion: nil)
}
}
ViewControllerA প্রোটোকল নিশ্চিত এবং প্রতিনিধি পদ্ধতির মাধ্যমে ডেটা গ্রহণ করবে বলে আশা করা sendData
import UIKit
// Conform the DataDelegate protocol in ViewControllerA
class ViewControllerA : UIViewController , DataDelegate {
@IBOutlet weak var dataLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func presentToChild(_ sender: UIButton) {
let childVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier:"ViewControllerB") as! ViewControllerB
//Registered delegate
childVC.delegate = self
self.present(childVC, animated: true, completion: nil)
}
// Implement the delegate method in ViewControllerA
func sendData(data : String) {
if data != "" {
self.dataLabel.text = data
}
}
}
আপনার প্রতিনিধি এবং প্রোটোকল ব্যবহার করা দরকার। এখানে একটি উদাহরণ দিয়ে একটি সাইট http://iosdevelopertips.com/objective-c/the-basics-of-protocols-and-delegates.html