okuda-seminar / Twitter-Clone

0 stars 0 forks source link

[iOS] Set Up DataSource for UserListsPageViewController.swift #421

Open TakayaShirai opened 2 months ago

TakayaShirai commented 2 months ago

Summary

Currently, the UserListsPageViewController view is displayed using fake data. To improve the code clarity and make the data handling easier, set up a proper data source for the viewController.

  newListCell(
    profileImage: UIImage(systemName: "note.text.badge.plus")!, listName: "fakeName1",
    numOfMembers: 10, numOfFollowers: 100)
  newListCell(
    profileImage: UIImage(systemName: "note.text.badge.plus")!, listName: "fakeName2",
    numOfMembers: 20, numOfFollowers: 99)
  newListCell(
    profileImage: UIImage(systemName: "note.text.badge.plus")!, listName: "fakeName3",
    numOfMembers: 30, numOfFollowers: 81)

Deadline

Will decide later.

References

None

Notes

None