Tagged Questions
2
votes
3answers
195 views
Rails - Why use self.current_user = user in sign_in method
I have finished the Ruby on Rails Tutorial by Michael Hartl. I know some basic ideas about instance variable, getters and setters.
The sign_in method is here
def sign_in(user)
...
3
votes
4answers
264 views
IOS allocated objects is not referenced later in this execution path retain count +1
In my appDelegate.h file I do this:
CLLocationManager *locationManager;
and
@property (nonatomic, retain) CLLocationManager *locationManager;
Then later in the .m file:
...
@synthesize ...
1
vote
2answers
50 views
How do I log a message when I run a method in a class?
I wrote the following code. When I run Hello.run I want to log a message, but this does not work.
Why does not this work?
class Hello
def initialize
@logger = Logger.new STDOUT
end
def ...
4
votes
2answers
807 views
Inheriting instance variables in Objective-c
In Objective-c 2.0 why do subclasses need to reference instance variables in parent classes using the self keyword?
Consider this example:
// a.h
@interface MyClass : NSObject
@property (nonatomic, ...
4
votes
2answers
1k views
Rails — self vs. @
I am following Michael Hartl's RoR tutorial, and it is covering the basics of password encryption. This is the User model as it currently stands:
class User < ActiveRecord::Base
attr_accessor ...
-3
votes
1answer
167 views
I guess some Ruby internals
class MyClass
def instance_variable=(var)
puts "inside getter"
instance_variable = var
end
def function_1
self.instance_variable = "whatever"
end
def function_2
...
1
vote
3answers
320 views
Assigning ivars using self keyword in an object's init method
I've read that it's bad to use self.ivar = (convenience method) in and object's 'init' method, as this messes with inheritance.
However, if you know you're not going to subclass your object, is it ok ...
31
votes
3answers
5k 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
2answers
760 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 ...