Compare commits

...

2 Commits

Author SHA1 Message Date
Shadowfacts 984b94bed9 Fix items not showing context menus 2022-01-21 22:25:49 -05:00
Shadowfacts d5664b0476 Change development team 2022-01-21 22:25:37 -05:00
2 changed files with 3 additions and 2 deletions

View File

@ -920,7 +920,7 @@
CODE_SIGN_ENTITLEMENTS = Reader/Reader.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = ZPBBSK8L8B;
DEVELOPMENT_TEAM = V4WK9KR9U2;
EXCLUDED_ARCHS = "";
GENERATE_INFOPLIST_FILE = YES;
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/lol-html/c-api/include/";
@ -961,7 +961,7 @@
CODE_SIGN_ENTITLEMENTS = Reader/Reader.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = ZPBBSK8L8B;
DEVELOPMENT_TEAM = V4WK9KR9U2;
EXCLUDED_ARCHS = "";
GENERATE_INFOPLIST_FILE = YES;
HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/lol-html/c-api/include/";

View File

@ -49,6 +49,7 @@ class ItemsViewController: UIViewController {
configuration.backgroundColor = .clear
let layout = UICollectionViewCompositionalLayout.list(using: configuration)
collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: layout)
collectionView.delegate = self
collectionView.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(collectionView)