gpt4 book ai didi

objective-c - 两个类之间的 IBOutlets 属性不保留。解除分配?

转载 作者:行者123 更新时间:2023-12-03 17:57:37 25 4
gpt4 key购买 nike

我试图弄清楚为什么我的 NSTextFields 仅保留在第一个方法 sendVarsToButton 中,而不保留在 updateTotal 方法中。我需要访问第一个方法中设置的 TextField 中的值,但我不能,因为我的 IBOutlet 在 sendVarsToButton 方法之后似乎会自行解除分配。你能帮我吗!?

这是我的 .h

#import <Cocoa/Cocoa.h>
#import "TransactionViewController.h"
@class TransactionButtonModel;

@interface TransactionButtonController : TransactionViewController

{
NSMutableArray *buttonsArrays;
TransactionViewController *transactionViewController;
TransactionButtonModel *transactionButtonModel;
}
@property(nonatomic,retain) IBOutlet NSTextField *nom;
@property(nonatomic,retain) IBOutlet NSTextField *descriptionText;
@property(nonatomic,retain) IBOutlet NSTextField *prix;
@property(nonatomic,retain) IBOutlet NSTextField *CPUField;
@property(nonatomic,retain) IBOutlet NSTextField *quantite;
@property(nonatomic,retain) IBOutlet NSTextField *total;

-(void)sendVarsToButton:(NSString *)name:(NSString *)description:(double)price:(double)CPU:(long)tag;
-(void)updateTotal:(int)newQuantity;
-(void)addQuantiteToExistingProduct:(long)tag;
-(IBAction)removeProductFromView:(id)sender;

这是我的.m

#import "TransactionButtonController.h"
#import "TransactionViewController.h"
#import "TransactionButtonModel.h"

@implementation TransactionButtonController
@synthesize prix;
@synthesize nom;
@synthesize descriptionText;
@synthesize CPUField;
@synthesize total;
@synthesize quantite;

//In this method, everything works fine

-(void)sendVarsToButton:(NSString *)name :(NSString *)description :(double)price :(double)CPU:(long)tag
{
[nom setTag:tag];
[descriptionText setTag:tag];
[prix setTag:tag];
[CPUField setTag:tag];
[quantite setTag:tag];
[total setTag:tag];

nom.stringValue = name;
descriptionText.stringValue = description;
[prix setDoubleValue : price];
CPUField.doubleValue = CPU;

total.doubleValue = [TransactionButtonModel calculateButtonTotal:quantite.intValue :prix.doubleValue];

NSLog(@"retain! :%lu",[[prix viewWithTag:tag] retainCount]); // returns 2

[transactionButtonModel release];

}
-(void)updateTotal:(int)newQuantity
{
NSLog(@"retain! :%lu",[[prix viewWithTag:2] retainCount]); //returns 0
[total setDoubleValue:[TransactionButtonModel calculateButtonTotal:newQuantity :prix.doubleValue]]; // value of prix = 0 and prix = null
NSLog(@"Updated! :%i",newQuantity);
}

-(void)dealloc
{
[nom release];
[quantite release];
[prix release];
[total release];
[descriptionText release];
}

提前致谢。

最佳答案

听起来您这里遇到了一些问题。排名不分先后:

  1. 您正在 sendVarsToButton::::: 中释放 transactionButtonModel,即使您没有在那里创建它,并且没有特别明显的理由您会这样做想要。这看起来可能是一个内存管理错误,但如果没有上下文就很难说。

  2. 您正在寻找引用计数机制来了解变量为何为空​​。过度释放一个对象不会将引用该对象的变量设置为空——它只是一个垃圾指针,并且可能会使你的程序崩溃。变量意外为 null 的最可能原因是 a) 方法以与您预期不同的顺序运行,或者 b) 类中有两个不同的实例,您将它们视为同一个实例。在这种情况下,我的钱会花在 B 上。您可能正在创建此类的两个实例,其中一个实际上显示 View ,另一个基本上是“空白”。尝试在这两个方法中记录 self 并查看它是否是同一个对象。

  3. 在一种方法中,您记录 viewWithTag:tag,而在另一种方法中,您记录 viewWithTag:2 — 这不一定是一个安全的假设 标签是2。

  4. prix 是一个 NSTextField — 为什么要向它请求 subview ? NSTextField 通常不会有任何有用的 subview 。这个设计似乎有些奇怪。

  5. 你的方法名称里全是冒号,简直是疯了。它很难阅读,并且经常会导致错误(因为当你不在“当下”时可能会误读代码,而且它违反了语言的习惯用法)。

  6. 您依赖 retainCount 来跟踪内存管理。 retainCount 返回的值充其量是有问题的,而且通常是彻头彻尾的欺骗性,因为事物总是被保留并自动释放,而 retainCount 不会为您提供足够的信息来解释这一点。如果您遇到内存管理问题(在变量变为 nil 的情况下不会),一个好的方法是使用 Instruments 和调试器来跟踪它,而不是随机retainCount日志记录。

关于objective-c - 两个类之间的 IBOutlets 属性不保留。解除分配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11055513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com