Tweeter is a basic twitter app to read and compose tweets the Twitter API.
Time spent: 23 hours spent in total
The following core features are completed:
A user should
- See an app icon in the home screen and a styled launch screen
- Be able to log in using their Twitter account
- See at latest the latest 20 tweets for a Twitter account in a Table View
- Be able to refresh data by pulling down on the Table View
- Be able to like and retweet from their Timeline view
- Only be able to access content if logged in
- Each tweet should display user profile picture, username, screen name, tweet text, timestamp, as well as buttons and labels for favorite, reply, and retweet counts.
- Compose and post a tweet from a Compose Tweet view, launched from a Compose button on the Nav bar.
- See Tweet details in a Details view
- App should render consistently all views and subviews in recent iPhone models and all orientations
The following stretch features are implemented:
A user could
- Be able to unlike or un-retweet by tapping a liked or retweeted Tweet button, respectively. (Doing so will decrement the count for each)
- Click on links that appear in Tweets
- See embedded media in Tweets that contain images or videos
- Reply to any Tweet (2 points)
- Replies should be prefixed with the username
- The
reply_id
should be set when posting the tweet
- See a character count when composing a Tweet (as well as a warning) (280 characters) (1 point)
- Load more tweets once they reach the bottom of the feed using infinite loading similar to the actual Twitter client
- Click on a Profile image to reveal another user's profile page, including:
- Header view: picture and tagline
- Basic stats: #tweets, #following, #followers
- Switch between timeline, mentions, or profile view through a tab bar (3 points)
- Profile Page: pulling down the profile page should blur and resize the header image. (4 points)
The following additional features are implemented:
- List anything else that you can get done to improve the app functionality!
Please list two areas of the assignment you'd like to discuss further with your peers during the next class (examples include better ways to implement something, how to extend your app in certain ways, etc):
- How to implement methods for favorite/retweeting.
- How to add replys to the details ViewController
Here's a walkthrough of implemented user stories:
GIF created with Kap.
Describe any challenges encountered while building the app.
I had to redo my TimelineViewController the day of submission due to a Autolayout error. After cleaning my code and starting the autolayout again, I got it to work. Apart from that time set back, I initially found it challanging to retrievie the data from the Twitter API, as it used method classes which we learnt this week. However, after working with the code I feel like a got a better understanding of how requests work and how to segue data.
List an 3rd party libraries, icons, graphics, or other assets you used in your app.
- AFNetworking - networking task library
Copyright [yyyy] [name of copyright owner]
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 at
http://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.