1
vote
4answers
46 views
What are the advantages of use accessors to instances of IB elements?
Usually, when we have to link an interface element to a field of a class, we use the keyword 'IBOutlet' to inform the pre-copiler:
@interface MyController : NSObject {
IBOutle …
1
vote
2answers
57 views
ruby equivalent of c#’s internal keyword?
in C# an "internal" class or method can only be called from within the assembly that it is located... i know Ruby doesn't have "assemblies" or any kind of real package like them (o …
1
vote
3answers
103 views
Why does attr_accessor clobber the existing variables in this model in Ruby on Rails?
I was bitten by this recently, and it'd be useful to know precisely what's happening to make this happen, so others avoid this mistake.
I have a model User, with a schema like so: …
0
votes
5answers
112 views
get and set issues
Here is the code that demonstrates my problem (All in the same namespace):
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this …
1
vote
1answer
161 views
Unit test with accessors
This is a two part question.
Background: We moved our C# application from VS2005 to VS2008 and in the process moved the application from .net 2.0 to .net 3.5. The transition went …
2
votes
4answers
126 views
Make an object accessible to only one other object in the same assembly?
Each business object has a matching object that contains sql calls. I'd like to restrict these sql objects in a way where they can only be used by the matching business object. How …
0
votes
1answer
51 views
Proper way to modify an NSMutableDictionary instance variable?
Hello! I have an Objective-C NSMutableDictionary declared inside a class's @interface section, with getter/setter methods, like so:
@interface myClass : NSObject
{
NSMutable …
1
vote
3answers
156 views
Objective C - Using an accessor if It does nothing different
In objective c, if the using the getter and directly accessing the ivar do exactly the same thing, no lazy loading code in the getter, all it does is returns the ivar, would you st …
7
votes
2answers
208 views
Valid use of accessors in init and dealloc methods?
I've heard now from several sources (stackoverflow.com, cocoa-dev, the documentation, blogs, etc) that it is "wrong" to use accessors and settings (foo, setFoo:) in your init and d …
0
votes
3answers
104 views
What’s the difference between using obj-c accessors and using dot syntax?
Since I've started on iPhone development I've been kinda confused as to which is the best way to access data as a member in a Class.
Let's say I have a class called MyClass, and i …
1
vote
11answers
250 views
What is the benefit of explicitly naming getters and setters as “get…” and “set…”?
Does this rankle anyone else out there? I would much rather see:
block.key(newKey); // set the key for this block
and
testKey = block.key(); // look up the key for this blo …
0
votes
5answers
106 views
Why can I not add a set accessor to an overriden property?
In a base class I have this property:
public virtual string Text
{
get { return text; }
}
I want to override that and return a different text, but I would also like to be a …
4
votes
5answers
592 views
What is the definition of “accessor method”?
I've been having an argument about the usage of the word "accessor" (the context is Java programming). I tend to think of accessors as implicitly being "property accessors" -- that …
2
votes
12answers
226 views
When should I start a method name that gets a property with the “get-” prefix?
What's a good rule of thumb for naming methods that return properties/attributes/members of an object? If an object has some immutable quality "blarg", should a method that return …
2
votes
7answers
147 views
using accessors in same class
I have heard that in C++, using an accessor ( get...() ) in a member function of the same class where the accessor was defined is good programming practice? Is it true and should i …
