This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma mark Collection Layout Delegate | |
| -(CGSize)collectionView:(UICollectionView *)collectionView | |
| layout:(UICollectionViewLayout *)collectionViewLayout | |
| sizeForItemAtIndexPath:(NSIndexPath *)indexPath | |
| { | |
| NSUInteger item = indexPath.item; | |
| if (item < [self.pageResult.results count] && indexPath.section == 0) { | |
| //------------ 重點 ------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| package="......."> | |
| <application | |
| android:allowBackup="false" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ..... | |
| android { | |
| ..... | |
| buildTypes { | |
| debug { | |
| applicationIdSuffix ".debug" | |
| .... | |
| } | |
OlderNewer