Twitter Clone is a basic twitter app to read and compose tweets from the Twitter API.
Time spent: 22 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_idshould 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:
- An alert pops up when tweets can't be loaded.
- An alert pops up when a tweet can't be uploaded.
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):
- I would like to discuss how to use delegates to make better and more complex apps.
- I'm interested in learning ways to recycle code in objective-c apps.
Here's a walkthrough of implemented user stories:
Screen.Recording.2022-06-24.at.7.28.41.PM.mov
The layout was a very difficult part of making the program and it took me a long time to get everything working. At first it was difficult for me to understand how to use delegates to code various features of the app. I also ran into a lot of bugs due to small modifications of the outlets and their synchronization with the storyboard elements and it took me a long time to fix them.
List an 3rd party libraries, icons, graphics, or other assets you used in your app.
- AFNetworking - networking task library
Copyright [2022] [Hugo Alejandro Gomez Herrera]
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.