via clingingtoideas.blogspot.com
Good post to see how easy it is to use a search bar with UITableView. This method uses the 'Search Bar and Search Display Controller' item in IB which basically will do all the work for us.
« August 2010 | Main | October 2010 »
via clingingtoideas.blogspot.com
Good post to see how easy it is to use a search bar with UITableView. This method uses the 'Search Bar and Search Display Controller' item in IB which basically will do all the work for us.
Posted at 11:48 PM | Permalink | Comments (0)
plists are wonderful for storing small amounts of semi-structured data when you don’t want the overhead of using a full-blown database. OS X, as you have no doubt noticed, uses plists extensively to store configuration data.
Great blog post for loading plist, reading from it and writing to a plist.
Posted at 11:44 PM | Permalink | Comments (0)
What we planned for this week
What we actually did
Who did what
Plans for the following week
Overall progress
We have a working App at the moment but without measurement conversion so far. So we are quite happy at the moment about our progress. We still have some remaining points from last week for further thinking:
Re-evaluation of risks
Risk | Likelihood | Impact | Time lost | Action |
Hackintosh erased hard drive | L | H | NaN | Set up everything again. |
App will not be accepted by Apple | M | H | Immense | Do it all again. |
Users don't find App user-friendly | H | H | Weekend | Improve user interface. |
Posted at 02:49 PM in Weekly Reports | Permalink | Comments (0)
I received the feedback from our second Assignment (Design document), where I used the Unitec logo in the top left that it is not allowed or not without permission of the marketing department at Unitec.
I thought this is strange and wanted to double check that fact. I wrote an e-mail to the marketing department to make sure.
I was really surprised to get a negative answer. The logo is only used in official Unitec statements. The logo gives the confirmation of a Unitec held position. And furthermore "... it would be both undesirable and untenable to manage the views of 23k current students are consistent with Unitecs' ".
Well, I stil can't believe it... but I will remove the logo then. Maybe the work has a higher value without the logo anyway. ;)
Posted at 09:42 AM | Permalink | Comments (2)
For the very first time, coresystems is presenting coresuite mobile and coresuite mobile client complete with full cloud functionality. Whether on an iPhone or a notebook – the coresuite mobile app makes your SAP processes mobile. Take advantage of the benefits the coresuite products have to offer your business:
This solution is particularly suited to small and mid-sized companies that work with SAP Business One and would like to have mobile access to their business processes, such as sales, CRM, executives and service. For details and prices, see www.coresuite.com.
Posted at 05:21 PM | Permalink | Comments (0)
Posted at 12:31 PM | Permalink | Comments (1)
What we planned for this week
What we actually did
Who did what
Plans for the following week
Overall progress
We are on track. After next week we will have implemented all our desired screens. What is missing are details in respect of the design of the views. Before being able to ship our app to the app store more things are in the queue that need further thinking and investigation.
Re-evaluation of risks
Risk | Likelihood | Impact | Time lost | Action |
Emotional outburst because of slow Unitec internet | H | H | Immense | Unfortunately we can't change it. :( Where can we complain? |
Hackintosh problems, small screens and high possibility of crashing | H | H | 3 hour / week | Buy a real Mac. Problem: no money. Solution: Unitec pays. |
Posted at 02:50 PM in Weekly Reports | Permalink | Comments (0)
I have to make a confession. I like TypePad more than Vox! ;) I never was really convinced with that Neighbourhood stuff. Following a blog is sufficient in my opinion. Happy blogging then!
Sent from my iPhone
Posted at 12:07 AM | Permalink | Comments (0)
What we planned for this week
What we actually did
Who did what
Plans for the following week
Re-evaluation of risks
Risk | Likelihood | Impact | Time lost | Action |
Work load in other projects, courses, assignments | H | H | Huge | Talk about time management. Define certain times a week to work only for this project. |
Closing of vox | H | M | 1 hour / member | Need a new way to distribute information, create new blog on TypePad. Follow each others blog in order to follow the actions from all team members. |
Team's concerns
Posted at 02:48 PM in Weekly Reports | Permalink | Comments (0)
There is a way to get more detailed error output. In this example in this from saving the context after deleting a managed object in CoreData:
NSError* error;
if(![[survey managedObjectContext] save:&error]) {
NSLog(@"Failed to save to data store: %@", [error localizedDescription]);
NSArray* detailedErrors = [[error userInfo] objectForKey:NSDetailedErrorsKey];
if(detailedErrors != nil && [detailedErrors count] > 0) {
for(NSError* detailedError in detailedErrors) {
NSLog(@" DetailedError: %@", [detailedError userInfo]);
}
}
else {
NSLog(@" %@", [error userInfo]);
}
}
Posted at 02:42 PM | Permalink | Comments (0)
Recent Comments