CS193P is an iOS programming course offered at Stanford University. The latest Winter 2012-2013 session videos, lecture slides and assignments are available on iTunes U, and have become a popular way of learning to program for the platform. Sample code that is provided in class is available from ...

learn more… | top users | synonyms

0
votes
1answer
14 views

cs193p assignment 4 flickr fetcher returns an empty array

I am following the iTunesU lecture of stanford cs193p class, and I am on assignment 4 right now. After I entered the API key in the header file and try to log the returned array to the console, it ...
0
votes
1answer
83 views

iOS: How to add toolbar or any footer below Table View?

I've followed the CS193p introduction course to objective C. I have now a grouped Table View, and my view controller is a CoreDataTableViewController (from the CS193p class), which is basically just a ...
0
votes
0answers
24 views

iOS CoreData: Linker Error even after adding it to target's build phases [duplicate]

I'm following the tutorial CS193p on itunes and running into a problem with the core data lesson. I've done everything exactly as in the demo (however for a slightly different app than in the lesson) ...
0
votes
0answers
120 views

When autorotating, my UIImageView within a UIScrollView adds small whitespace to edge

I am working on an IOS assignment from Stanford's CS193P (Fall 2011) course on iTunesU (Assignment #4 to be specific). I am running XCode Version 4.6 (4H127). My Base SDK and Build Target are both IOS ...
0
votes
1answer
65 views

table view controller cs193p iTunesU 9 lesson

Hi I'm studying a 9TH lesson of iTunesU CS193P about table view and compiler report me this error NSInternalInconsistencyException', reason: '-[__NSCFArray removeObjectAtIndex:]: mutating method sent ...
0
votes
1answer
60 views

unrecognized selector sent to instance for Paul Hegarty's CS193P

I'm following Paul Hegarty's CS193P course video (lecture #4 @ 1:05:40 mark) and ran into problems. Please help debug this 'unrecognized selector sent to instance' error. The view has three objects ...
0
votes
0answers
58 views

Can't addObject into a NSMutablearray in Assignment 4 of CS193P

I copy the Lesson 9 Demo " Favorites " about "userdefaults" code. but i found can't add object into the mutable array, so the table view datesource can't get the array. this assignment is ask add the ...
5
votes
6answers
390 views

How to remove UIButton's image for certain states?

I'm working on a card game. I want the card backs to show an image and the card fronts to show the card contents. I've gotten the image to show on the back, but I can't figure out how to clear it ...
4
votes
1answer
132 views

UIActivityIndicatorView Never Animates

I have a PhotoViewController class with an @property UIActivityIndicatorView* spinner. FlickrPhotoViewController is a subclass of PhotoViewController that downloads a photo from Flickr and tells the ...
1
vote
1answer
128 views

iOS (cs193p): Issue using a delegate in a MapViewController to get an image using a different thread from another controller

I'm following the excellent CS193P lecture on iOS 5.0 development: http://www.stanford.edu/class/cs193p/cgi-bin/drupal/ I'm now at assignment #5, required task #5b. I need to display a callout with a ...
0
votes
1answer
185 views

Xcode provisioning profile issues when trying to run applications on a iOS device

I'm following the excellent Stanford CS193P course (Fall 2011) on iTunes U: http://www.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2011-fall I'm trying to run my application (Calculator) from ...
1
vote
1answer
50 views

How are tasks synchronized when dispatched asynchronously on different dispatch queues? (Shutterbug example)

In the Shutterbug example code presented in Lecture 10, Fall 2011, photos are downloaded and then updated into a table view controller using the following code: dispatch_queue_t downloadQueue = ...
1
vote
1answer
216 views

iOS (cs193p): Why are my UISplitViewControllerDelegate delegate methods not called on orientation change?

I'm following the awesome Stanford cs193p course on iTunes and I'm now at lecture #7 and homework #3. I'm just trying to make the SplitViewController works correctly on iPad... but it looks like my ...
1
vote
1answer
179 views

New XCode is proving problematic for Stanford CS 193P

I am working through the CS 193P course from 2011 from Stanford University and much of the code is not working. When I updated to the new XCode, none of the button segues I program work and trying to ...
1
vote
2answers
108 views

CS193p Assignment 4 API wont work

I can't get my API on this assignment to work. I'm currently running the following function on startup: - (void)viewDidLoad { [super viewDidLoad]; [self updatePlaces]; } That function ...
1
vote
1answer
102 views

Objective C: Download Thread not affecting UI, even possible?

I'm working through the Standford course on ItunesU and there they say a thread to download something should not do anything to the UI, this should only happen on the Main Thread. Well, in my example ...
0
votes
1answer
88 views

Why Paul Hegarty says not to change NSFetchedResultsController @properties?

Overview: Stanford iOS tutorials contains an implementation (header + implementation file) to help use the table view while using core data. Link - ...
2
votes
4answers
352 views

UIViewController throwing unrecognized selector exception on prepareForSegue

I'm trying to follow along the Stanford CS193p iOS programing lectures. One of the demo programs, called "Happiness" creates two UIViewControllers, a "PsychViewController" and a ...
2
votes
3answers
111 views

Why does this NSUserDefaults key contain a dot?

I'm watching the lesson of standford CS193P, in particular the lecture n°7. I have some doubts about NSUserDefaults. This is the part of code : #define FAVORITES_KEY ...
1
vote
2answers
84 views

Backspacing a Number in a Calculator App

Can someone explain this code - (IBAction)backspacePressed { self.display.text =[self.display.text substringToIndex: [self.display.text length] - 1]; if ( [self.display.text ...
0
votes
2answers
383 views

Using NSRange rangeOfString

Can someone explain what location and length represent for NSRange. If I use it in this context NSRange range = [self.display.text rangeOfString:@"."]; if(range.location == NSNotFound){ ...
0
votes
2answers
204 views

Stanford Itunes U objective C calculator brain walkthrough minus operation

I've been using the stanford videos as a tool for learning ios programming. I have a question about the "-" operation. The walkthrough explains that for this part of code the order of operands has to ...
0
votes
2answers
125 views

iOS - Getting information from the View Controller to drawRect in the View

My question relates to Assignment 3 in CS193p. Im having a terrible time getting drawRect in my View to receive information passed from my View Controller. Basically, my goal is to pass ...
2
votes
2answers
123 views

iOS - How to pass information from the VIEW to the Controller?

I am fairly new to programming in general, and have been following the CS193p videos on iTunesU. I am currently doing assignment 3, and am having trouble getting a bit of information from the View ...
0
votes
0answers
88 views

CS193p Assignment 3 - How to passing info from VIEW to View Controller? [closed]

I am having a terrible time trying to pass a bit of information from my GraphingCalcView to my GraphingCalcViewController -_- Basically, I can know about the width of my screen from my ...
1
vote
1answer
671 views

Core Data: use executeFetchRequest in a loop

Regarding one answer in another post: is that use executeFetchRequest in a loop a bad practice? I saw that usage in Stanford CS193p project "Photomania" (click link to download project). The relevant ...
0
votes
2answers
221 views

FetchedResultsController returning empty array

I have a fetchedResultsController using CoreDataTableView that I want to retrieve information from, the problem is that I am not getting any values from the fetchedresultsController, I believe that ...
0
votes
2answers
740 views

Why am I getting a unrecognized selector sent to instance exception with my MapViewController? (iOS)

I'm taking the Stanford iOS class (sorry, I'm one of these guys but gotta learn somehow I guess) and I'm using code that is almost exactly the same as the code that the prof used in the lecture about ...
0
votes
1answer
75 views

How do I verify the contents returned from a queue match the UITableView cell they were intended for?

I'm new to iOS development and this is my first question on stackoverflow even though I come here a lot. Thanks for such a great resource! I'm taking the Stanford CS193P course and having trouble ...
0
votes
3answers
206 views

Stanford cs193p Fall 2011 course made a mistake in lecture 9?

In lecture 9, the teacher said that numberOfSectionsInTableView: method returns 1 by default, but when I created my own project, I found that it returns 0 by default, and that made my table view cell ...
-1
votes
2answers
122 views

Objective C Syntax Error? CS193 CalculatorViewController [closed]

I've come across a fair number questions with the same file and after cleaning out my other errors there's still one i can't seem to figure out. I think the error is that I have one too many/few { or ...
0
votes
2answers
73 views

Photo instances fetched into memory when app launched?

The code is from Stanford iOS developing course's Photomania app. Basically I want to know when instances of Photo entity are actually fetched into memory (or context). Is that happen when the factory ...
0
votes
1answer
642 views

iOS: Why UILabel is not initialized?

The code is from Stanford CS193p. I added a NSLog to check it out. The label seems not being initialized. Any idea? @interface AskerViewController() <UITextFieldDelegate> @property (weak, ...
0
votes
1answer
104 views

Using a property as a count in Objective C

I am new to Objective C. I was following Stanford lectures 2011-12 fall on iOS development and in assignment 1 it asks to implement a decimal point in a calculator. This is what my implementation ...
0
votes
1answer
536 views

mkmapview delegate method not being called -calloutaccessorycontroltapped

I'm trying to complete the last part of assignment 5 of cs193p (link) The app selects popular places from Flickr and plots photos from those places on the map. It's Task 5c which says Each ...
0
votes
1answer
114 views

No visible declaration error when the declaration is there, Objective c [closed]

Hi I am getting the the error "No visible @interface for 'CalculatorBrain" declares the selector 'runprogram:usingVariableValues:'" at the graphPoint.y code part -(id) programToGraph:(GraphingView ...
1
vote
1answer
430 views

Passing Objects using Segue

I have trouble understanding segues and how they work and pass objects. Basically I have a calculator and am trying to graph the objects stored in an array. So far I have an object called brain which ...
0
votes
1answer
112 views

iOS RPNCalculatorStanfordVidOne can't figure out why all but one line is working

I am 100% brand new to iOS. I am watching Stanford U's videos online to learn iOS. I spent hours slowly going through the second video meticulously ensuring I didn't goof on a line of code. Everything ...
1
vote
1answer
210 views

Stanford iTunes U CS193P Assignment 3, Communication between two ViewControllers

Ok, I know that the model for the new graphing vc is going to be a subclass of the calculator brain, but how do I get the program stack of the CalculatorBrain from the old VC to the GraphingBrain of ...
1
vote
1answer
200 views

Objective C 'target action' in .m and 'outlet' in .h

I'm currently taking the Stanford CS193p iPhone and iPad application development course ( http://itunes.apple.com/itunes-u/ipad-iphone-application-development/id473757255 ) and in the second lecture I ...
0
votes
2answers
60 views

Can i do the initialization in a method?

For example, i got a method like this: - (void)addToRecents:(NSDictionary *)photo { NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSMutableArray *recents = [[defaults ...
0
votes
1answer
102 views

how to get its own view controller inside itself?

@interface RecentPhotosViewController () <PhotoViewControllerDelegate> - (void)viewDidLoad { [super viewDidLoad]; [[self.tabBarController.viewControllers objectAtIndex:1] ...
0
votes
0answers
199 views

set the image fit to the screen after zooming in a scroll view

Here is my code: #import "PhotoViewController.h" #import "FlickrFetcher.h" @interface PhotoViewController () <UIScrollViewDelegate> @property (weak, nonatomic) IBOutlet UIImageView ...
0
votes
1answer
93 views

ios 5 storyboard issue

In the iphone storyboard, i create a view controller, then i add a generic view to that controller, then add a image view to the generic view. Then i implement the generic view controller code. ...
-2
votes
1answer
59 views

Need clarifications working with Views in iOS [closed]

Ok, I'm learning programming for iOS with Stanford's online course on iTunes U (CS193P) but I can't exactly get a hold on how all the stuff from UIView works. Could someone explain how the following ...
1
vote
1answer
279 views

The delegate error

The thing I want to do is: First, the TopPlacesViewController has a segue to the class SinglePlacePhotosViewController (a TableView controller). I create a delegate in the TopPlacesViewController ...
2
votes
1answer
235 views

prepareForDeletion being called once when I call deleteObject: and a second time when I save

edited with extra information: I am using an app based on CoreDataTableViewController from cs193p. When I delete an instance of an entity called Position, the prepareForDeletion is called immediately. ...
0
votes
1answer
124 views

When does setter method get called from UIView subclass

I am taking the free Stanford course on iTunesU(193P) and we created setting up a class that is a subclass of UIView and created a public property called scale. The idea was that when we pinch, the ...
4
votes
2answers
355 views

Standford iphone development -CS193P Assignment 1 - “sin” operation [closed]

one of the required work is to implement the "sin" button on the calculator Add the following 4 operation buttons: • sin : calculates the sine of the top operand on the stack. here is my code - ...
1
vote
4answers
308 views

Newbie IOS Class Method

On assignment 2 of the Stanford CS193P course it states that I must add a runProgram class method with the following signature: + (double)runProgram:(id)program usingVariableValues:(NSDictionary ...

1 2