388 reputation
218
bio website facebook.com/Macrolith
location Ottawa, Canada
age 17
visits member for 1 year, 2 months
seen May 20 at 20:55
stats profile views 66

I was introduced to coding through a grade 11 "Introduction to Computer Science" which taught the basics of coding through Visual Basic.

I really enjoyed the class and took my knowledge further by developing our first iPhone Application with my partner. Stack-Overflow has helped a great deal with this.

Together we are growing our company, and hope for the best in the future.


Oct
26
comment Object is nil when called from another class
Ahh. The last thing you said does strike a bell. The class that I am trying (and failing) to call closeMenu does not have a XIB file along with it. Is this the problem?
Oct
25
comment Object is nil when called from another class
But the viewDidLoad method has been called. I made sure of that.
Oct
25
comment Object is nil when called from another class
You don't understand. The ViewController does load. It's the first thing to load. menuView is created right when the app starts running. And I can access it [self closeMenu]; and it works. I know that it is not nil. But then even after I do that. I move onto the other class file, and it doesn't work. It gets to the method but then BAM it's nil. I go back to the other class file, and BAM it works again. It must be something with the way I call it. Or maybe you just can't do what I'm trying to do.
Oct
25
revised Object is nil when called from another class
edited tags
Oct
23
comment Object is nil when called from another class
okay, I understand where you're coming from. But it's not always nil. Only when called from another class. How do I change this..?
Oct
23
comment Object is nil when called from another class
but it works if I do [self closeMenu] in the ViewController class... returns the objects height... I think you misunderstood the comment
Oct
23
comment Object is nil when called from another class
@HotLicks then what am I doing wrong? how is this achieved..?
Oct
23
comment Object is nil when called from another class
@user427969 how do you mean? I made it in Interface Builder
Oct
23
asked Object is nil when called from another class
Oct
22
comment Animation is not being performed through to another view controller
@rmaddy update: the menuView is nil when it is called from the other Class. But works fine when it is called from it's own class.....
Oct
22
comment Animation is not being performed through to another view controller
I tried what you updated. But that's not working either. Maybe I wasn't clear. I have the xib file for ViewController, and I want to animate it from another class file. It reaches the method. But in both these ways, it still fails to animate the view
Oct
21
comment Animation is not being performed through to another view controller
How would I call the animation in on an instance...? (This seems to be on the right track, but could you edit your answer with how to do that) would be greatly appreciated! Thanks!
Oct
21
comment Animation is not being performed through to another view controller
@WrightsCS yes, this void method works if I call [self closeMenu] in the ViewController.m it works. But through this way it doesn't
Oct
21
revised Animation is not being performed through to another view controller
edited tags
Oct
21
comment Animation is not being performed through to another view controller
@rmaddy yeah the animation doesn't happen. The breakpoint is reached and menuView is non-nil, I made it with IB
Oct
21
revised Animation is not being performed through to another view controller
added 63 characters in body
Oct
21
asked Animation is not being performed through to another view controller
Oct
21
awarded  Self-Learner
Oct
19
accepted UIGestureRecognizer across entire view
Oct
17
comment call this -(void) from another .m file
Well, I would just like to perform the method from another class file.