- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何访问在另一个类中创建的 IBOutlets?
这是我的代码... 第一类
.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (retain, readwrite) IBOutlet UIView *myView;
@end
.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize myView;
- (void)viewDidLoad {
[super viewDidLoad];
}
@end
第二类
.h
#import <UIKit/UIKit.h>
@interface ViewController2 : UIViewController
- (IBAction)accion:(id)sender;
- (IBAction)btnBack:(id)sender;
@end
.m
#import "ViewController.h"
#import "ViewController2.h"
@interface ViewController2 ()
@end
@implementation ViewController2
- (void)viewDidLoad {
[super viewDidLoad];
}
- (IBAction)accion:(id)sender {
ViewController *a = [ViewController new];
UIView *someView = [a myView];
[someView setBackgroundColor:[UIColor redColor]];
}
- (IBAction)btnBack:(id)sender {
[self dismissViewControllerAnimated:YES completion:nil];
}
@end
为什么不行?返回我的 View 时不更改背景颜色
最佳答案
我认为您尝试委托(delegate)模式来设置值 Viewcontroller2.h
文件像这样添加协议(protocol)...
#import <UIKit/UIKit.h>
@protocol tutorialDelegate <NSObject> //set protocol
-(void)delegatesDescribedWithDescription;
@end
@interface ViewController2 : UIViewController
@property (weak, nonatomic) id<tutorialDelegate> tutorialDelegate1;
- (IBAction)accion:(id)sender;
- (IBAction)btnBack:(id)sender;
@end
在viewcontroller2.m
中声明协议(protocol)之后文件首先合成并调用这样的方法..
#import "ViewController.h"
@interface ViewController2 ()
@end
@implementation ViewController2
@synthesize tutorialDelegate1; // synthesize here
- (void)viewDidLoad {
[super viewDidLoad];
}
- (IBAction)accion:(id)sender {
ViewController *a = [ViewController new];
UIView *someView = [a myView];
[someView setBackgroundColor:[UIColor redColor]];
}
- (IBAction)btnBack:(id)sender {
// Here we tell delegate to invoke method in parent view.
[self.tutorialDelegate1 delegatesDescribedWithDescription
];
[self dismissViewControllerAnimated:YES completion:nil];
}
@end
最后我们在 View controller.m
中实现这个方法文件但首先在 viewcotroller.h
中设置委托(delegate)像这样的文件...
#import <UIKit/UIKit.h>
#import "ViewController2.h" //import here
@interface ViewController : UIViewController <tutorialDelegate> //set delegate
@property (retain, readwrite) IBOutlet UIView *myView;
@end
和viewcontroller.m
文件
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize myView;
- (void)viewDidLoad {
[super viewDidLoad];
}
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"yourIdentifier"]) {
ViewController2 *detailViewController =
segue.destinationViewController;
// here we set the ViewController to be delegate in
// detailViewController
detailViewController.tutorialDelegate1 = self;
}
}
// ViewController must implement tutorialDelegate's methods
// because we specified that ViewController will conform to
// tutorialDelegate protocol
-(void)delegatesDescribedWithDescription
{ // here your code please
viewTemp.backgroundColor =[UIColor redColor];
}
@end
关于ios - 从另一个类访问 IBOutlet 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31308734/
这个问题在这里已经有了答案: 关闭 10 年前。
我创建了一个自定义单元格: #import #import "SevenSwitch.h" @interface cellaMain : UITableViewCell { SevenSwi
我有一个颜色选择器项目。对于每个颜色组件(红色、绿色和蓝色),我有一个 UIPickerView、一个文本字段和一个步进器。我想做的是创建一个类,我们将其命名为 ColorPickerObject,如
我目前正在使用统一的 Storyboard(带有尺寸等级)。对于我的观点之一,wAny hAny 和 wRegular hRegular 大小类之间的设计差异非常明显,以至于根据大小类更改 subvi
class AClass: UIViewController,CLLocationManagerDelegate,MKMapViewDelegate { @IBOutlet var m
我在同一个 nib 文件中有我的主应用程序 View Controller (文件所有者)、它的第一响应程序、 View 和其他 3 个 UIViewController。 3 个 UIViewCon
我创建了以下自定义 View : @interface TNGalleryView : UIView @property (assign, nonatomic) id delegate; @prop
我制作了一个自定义的 UITableViewCell,我在其中添加了 2 个标签和一个 UIImageView,每个标签都带有 IBOutlets。 IBOutlet weak var imageVi
我的大多数 View Controller 中有几个 socket ,我总是将它们与头文件中的属性链接起来,如下所示: IBOutlet UIButton *homeButton; @property
在大多数示例中,我看到 IBOutlet 的以下设置: (Example A) FooController.h: @interface FooController : UIViewController
我的 EAGLView 类中有一个类“A”的实例,它在 EAGLView 的 initWithCoder 方法中实例化。 此类“A”包含 UIView 的 IBOutlet。 我在 Interface
加快Cocoa iPhone/Mac开发速度,我知道原子和非原子属性之间的区别,以及与非原子的性能差异,但是IBOutlet的每个定义我见过的属性指定非原子的,而不是默认的原子的。我无法找到解释这是一
我正在尝试设置来自不同类的 NSTextField 的文本.. 这就是我所拥有的: 首选项.h @interface Preferences : NSObject { IBOutlet NSTextF
我有一个基于文档的 cocoa 应用程序,应用程序菜单中的一个项目连接到一个IBAction。单击该项目需要执行一项使用主 nib 文件中的 IBOutlet 的任务,该文件使用另一个类 MyDocu
我通过 Interface Builder 设置了 TextView 的导出。 TextView 加载正常,但是我无法以编程方式访问它的任何属性,因为导出始终为 nil。 什么时候实例化?即使在调用我
这是一个我已经被困了两个小时的问题了!我有一个带有静态单元格表 View 的 TableView Controller 。在静态 TableView 单元之一中,我放置了一个带有动态单元的 Tab
是否需要将所有声明为IBOutlet的带有retain修饰符的@property设置为nil - (void)dealloc 方法?如果我不这样做,内存会被消耗/浪费吗? 假设自动引用计数关闭。 最佳
我有A级和子类 ClassB 是否可以将 UIImage 选择器中的图像从 ClassA 传递到 ClassB NSLog(@"Camera Dismiss Method Reached"); [pi
我有 2 个 swift 文件,一个是我的 HomeViewController,第二个是我的 EventCollectionViewCell。在第二个中,我有一个 IBOutlet = inform
我目前正在制作一个路线跟踪应用程序来教我自己如何快速。我具有处理正在跟踪的路线和从单个 SessionController 类中绘制折线的基本功能,但我想将该类拆分为单独的对象。 这就是我遇到问题的地
我是一名优秀的程序员,十分优秀!