Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flochtililoch/tuitteur
Twitter client - Codepath - Intro to iOS Week 3 & 4 Assignments
https://github.com/flochtililoch/tuitteur
Last synced: about 5 hours ago
JSON representation
Twitter client - Codepath - Intro to iOS Week 3 & 4 Assignments
- Host: GitHub
- URL: https://github.com/flochtililoch/tuitteur
- Owner: flochtililoch
- Created: 2015-11-05T07:44:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-17T05:01:13.000Z (about 9 years ago)
- Last Synced: 2024-04-13T08:08:25.268Z (7 months ago)
- Language: Objective-C
- Homepage:
- Size: 19.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project 3 - *Tuitteur*
**Tuitteur** is a basic twitter app to read and compose tweets the [Twitter API](https://apps.twitter.com/).
Time spent: **40** hours spent in total
## Week 3
### User Stories
The following **required** functionality is completed:
- [X] User can sign in using OAuth login flow.
- [X] User can view last 20 tweets from their home timeline.
- [X] The current signed in user will be persisted across restarts.
- [X] In the home timeline, user can view tweet with the user profile picture, username, tweet text, and timestamp. In other words, design the custom cell with the proper Auto Layout settings. You will also need to augment the model classes.
- [X] User can pull to refresh.
- [X] User can compose a new tweet by tapping on a compose button.
- [X] User can tap on a tweet to view it, with controls to retweet, favorite, and reply.The following **optional** features are implemented:
- [X] When composing, you should have a countdown in the upper right for the tweet limit.
- [X] After creating a new tweet, a user should be able to view it in the timeline immediately without refetching the timeline from the network.
- [X] Retweeting and favoriting should increment the retweet and favorite count.
- [X] User should be able to unretweet and unfavorite and should decrement the retweet and favorite count.
- [X] Replies should be prefixed with the username and the reply_id should be set when posting the tweet,
- [X] User can load more tweets once they reach the bottom of the feed using infinite loading similar to the actual Twitter client.### Video Walkthrough
Here's a walkthrough of implemented user stories:
GIF created with [LiceCap](http://www.cockos.com/licecap/).
## Week 4
### User Stories
The following **required** functionality is completed:
- [X] Hamburger menu
- [X] Dragging anywhere in the view should reveal the menu.
- [X] The menu should include links to your profile, the home timeline, and the mentions view.
- [X] The menu can look similar to the LinkedIn menu below or feel free to take liberty with the UI.
- [X] Profile page
- [X] Contains the user header view
- [X] Contains a section with the users basic stats: # tweets, # following, # followers
- [X] Home Timeline
- [X] Tapping on a user image should bring up that user's profile pageThe following **optional** features are implemented:
- [ ] Profile Page
- [ ] Implement the paging view for the user description.
- [ ] As the paging view moves, increase the opacity of the background screen. See the actual Twitter app for this effect
- [ ] Pulling down the profile page should blur and resize the header image.
- [ ] Account switching
- [ ] Long press on tab bar to bring up Account view with animation
- [ ] Tap account to switch to
- [ ] Include a plus button to Add an Account
- [ ] Swipe to delete an accountThe following **additional** features are implemented:
- [X] Tapping on a user image anywhere in the app should bring up that user's profile page
- [X] Hamburger menu
- [X] Opening the menu should fade out the main screen. Tapping anywhere on the main screen while menu is open should close the menu.### Video Walkthrough
Here's a walkthrough of implemented user stories:
## Notes
Challenges:
- Creating re-usable view for common elements such as retweet text or tweet actions buttons.
- Creating "Compose view" delegate to be implemented by both Home and Tweet views.
- Dealing with Twitter API rate limitation and quirks (i.e. "user.favourites_count" vs "tweet.favorite_count")
- Visual bugs not obvious to solve, resolved with not-so-clean fixes (e.g [here](https://github.com/flochtililoch/tuitteur/blob/master/Tuitteur/MenuViewController.m#L72), [here](https://github.com/flochtililoch/tuitteur/blob/master/Tuitteur/ProfileDetailsViewController.m#L61))## License
Copyright 2015 flochtililoch
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.