0
votes
3answers
44 views
Hibernate3: Self-Referencing Objects
Need some help on understanding how to do this; I'm going to be running recursive 'find' on a file system and I want to keep the information in a single DB table - with a self-referencing hierarchial …
0
votes
1answer
33 views
UIViewController won’t respond to presentModalViewController…
Hey.,
I've had a UITableViewController-Class. I've changed the UITableViewController Class to UIVIewController and made and specified the connections in IB new.
Everything works fine, except [self …
2
votes
3answers
174 views
Confused when I see ‘self’ and ‘__init__’
I don't understand what these are used for, particularly the self argument? Could some please explain this to me and why on earth you would want to pass this in?
Also, I've always thought __init__ …
0
votes
1answer
69 views
self.delegate = self; what’s wrong in doing that?
Hi,
self.delegate = self; what's wrong in doing that?
and what is the correct way of doing it?
Thanks, Nir.
Code:
…
1
vote
1answer
42 views
[TSQL] Parent-Child view from table that is self referencing (ID)? (for tsql gurus.)
I have a organization name table with the following structure given below:
CREATE TABLE [dbo].[DP_ORG_OrganizationUnit](
[GID] [uniqueidentifier] NULL,
[ID] [int] IDENTITY(1,1) NOT FOR …
0
votes
4answers
111 views
self = Descendant in Ruby?
Hi there, I have a text log from a game with (for example) two types of entries viz. Chat and Event. For the most part they are very similar so I have a LogEntry class defined as so;
class LogEntry …
0
votes
2answers
91 views
Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?
I'm confused about these two keywords and the way to use them in PHP5. I think that "this" is used for instanced objects (not static) while "self" is referring to the object itself, not an instance of …
0
votes
3answers
69 views
Instance variable: self vs @
I saw a code
class Person
def initialize(age)
@age = age
end
def age
@age
end
def age_difference_with(other_person)
(self.age - other_person.age).abs
end
protected :age
end
…
0
votes
1answer
135 views
Connect from iPhone to RESTfull WCF Service with Self Signed Certificate
Hi Guys,
I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate.
The WCF service returns XML which is …
0
votes
2answers
107 views
Objective C - access BOOL ivar of void pointer to self
I have a thing that uses a SystemSoundID to play a sound, and then repeat with a C function being used as the sound completion callback, and the function is passed (void *)self (since it has to be a …
0
votes
2answers
48 views
Is it necessary to refer to self in: yield(self[i])
In this example from a blog post,
class Array
def each
i = 0
while(i < self.length) do
yield(self[i])
i += 1
end
end
end
my_array = ["a", "b", "c"]
my_array.each …
3
votes
6answers
291 views
Assigning to self in Objective-C
I'm from the C++ world so the notion of assigning this makes me shudder:
this = new Object; // Gah!
But in Objective-C there is a similar keyword, self, for which this is perfectly acceptable:
…
3
votes
5answers
172 views
When to call self.myObject vs just calling myObject in Objective-C
This little bit of syntax has been a bit of a confusion for me in Objective-C.
When should I call self.myObject vs just calling myObject.
It seems redundant however they are not interchangeable.
…
0
votes
5answers
147 views
what is self? when should i use it?
can you explain me the self in the objective-C 2.0 ? when and where should i use?
is it similar with this definition in java?
2
votes
5answers
277 views
How to call an Objective-C Method from a C Method?
I have an Obj-C object with a bunch of methods inside of it. Sometimes a method needs to call another method inside the same object. I can't seem to figure out how to get a C method to call a Obj-C …
