Tagged Questions
CS193P is an iOS programming course offered at Stanford University. The Fall 2010 session videos are available on iTunes U, and have become a popular way of learning to program for the platform. All course materials are available as PDFs http://cs193p.stanford.edu/
7
votes
3answers
2k views
How can I create a variable sized UITableViewCell?
I can't seem to get the text to actually span multiple lines. The heights look correct. What am I missing?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
5
votes
7answers
1k views
CS193P - Adding floating point button to iOS calculator
I recently started following the online course on iPhone development from Stanford University on iTunes U.
I'm trying to do the homework assignments now for the first couple of lectures. I followed ...
5
votes
3answers
4k views
Are the solutions to Stanford's online iPhone development course anywhere on the web?
I am working through Stanford's online CS course for iPhone development and from time to time I get stuck on something. Does anyone know if they supplied solutions to the weekly homework anywhere? It ...
4
votes
2answers
614 views
isKindOfClass and NSStringFromClass disagree about UIApplicationDelegate
I was playing with a simple OCUnit test for an iPhone app, and just wanted to assert that the app delegate was an instance of the class that I expected it to be. I didn't expect this test to be very ...
3
votes
3answers
673 views
How am I leaking memory?
I have a table view that when loading creates a person object
Person.h
#import <UIKit/UIKit.h>
#import "TwitterHelper.h"
@interface Person : NSObject {
NSDictionary *userInfo;
NSURL ...
3
votes
2answers
842 views
Is there a shortcut to get to the /Resources/ folder in iPhone development?
Is there a shortcut method much like NSHomeDirectory() and NSTemporaryDirectory to get to the resources folder within your project?
Is the /resources/ folder the best place to be storing a file?
2
votes
3answers
217 views
What to read on algorithms, where to get started as programmer
I decided to get into programming, watching cs193p from stanford, on Iphone development, and it is too much for me, although I meet the prerequisites of the course, I watched and done the 106 course - ...
2
votes
3answers
2k views
EXC_BAD_ACCESS upon simple iPhone app startup
Background:
I'm trying out the "HelloPoly" assignment in the CS193P course.
I've created my .xib file, and a custom Controller class.
I haven't fleshed out any methods - I've only allowed IB to ...
2
votes
3answers
2k views
Why won't my objective c implementation file recognize my import statement
Here is my header file
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <PolygonShape.h>
@interface Controller : NSObject {
IBOutlet UIButton *decreaseButton;
...
2
votes
6answers
2k views
Passing object from controller to a view
I'm following iPhone dev courses from Stanford Open-University, and I've been blocked for 2 days on assignment3, maybe someone can help me here?
The tasks are:
Create a custom UIView subclass that ...
1
vote
1answer
847 views
CS193P - Assignment 3 - drawRect get called only on the first setNeedsDisplay
I'm taking CS193P iPhone Development courses, and even if.. I know that I'm pretty late
comparing to Stanford's students, I'm doing Assignment 3.
My current problem is: My drawRect method does not ...
1
vote
1answer
527 views
Can't find the example projects from Stanford cs193p
I am looking for the Flickr multithreaded example application that is used in lecture 10 "Performance and Threading". He does a few things that I would like to look at. The particular files I'm ...
0
votes
1answer
103 views
Trying to figure why EXC_BAD_ACCESS error occurs
My app has three controllers:
UINavigationController: alloc'd and int'd in application:didFinishLaunchingWithOptions:
CalculatorViewController: It`s view is a calculator with basic arithmetic. It's ...
0
votes
1answer
54 views
iOS data source delegation
I've been working through the Stanford CS193p course for iOS 5.0 development (available on iTunes U) and have run into a problem whilst attempting Assignment 3 (pdf).
I am trying to implement a ...
0
votes
0answers
91 views
Is there a support community around Stanford's “CS 193P iPhone Application Development” anywhere on the web? [closed]
Searching Google brought me here: Are the solutions to Stanford's online iPhone development course anywhere on the web?
Searching "193p" on Stackoverflow.com did spit out a bunch of results, but ...
0
votes
2answers
65 views
Wired a calculator button without the code, deleted it, and now simulator crashes
I'm fairly new to xcode so I apologize if this question is trivial. I'm following the lectures on itunesU for CS193P if that helps to know beforehand.
I created the calculator and everything was ...
0
votes
1answer
183 views
ios 4 setBackgroundColor is not called by drawRect
This is probably a simple one but I really can't answer it.
I completed one of the demonstration apps shown in the CS193p class. It's basically a very simple view with a UISlider and a custom ...
0
votes
3answers
283 views
Core Data database doesn't save
I'm trying to implement the Paparazzi 2 assignment from the Stanford CS193 course and I'm running into a problem. My one call to save the database is when the app exits (I'm borrowing heavily from ...
0
votes
1answer
321 views
iPhone: Rotating a drawing without rotating the view within which it is drawn
Anyone who has gone through the Stanford CS193P class on iTunes will recognize this from Assignment 3 (HelloPoly). For those not familiar:
I have a custom view called polyView, an instance of ...
0
votes
3answers
743 views
stanford cs193p - PrintIntrospectionInfo - section 4 assignment 1b
I'm having trouble with section 4 of the stanford iphone class on assignment 1b.
I am having trouble understanding how I will build the array and what
the assignment expects.
Should the array be a ...