Skip to content

Commit c8a0b84

Browse files
committed
画像リソースを小さくした.
1 parent 8b8bacd commit c8a0b84

File tree

282 files changed

+1417
-476
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

282 files changed

+1417
-476
lines changed

AAKeyboardApp.xcodeproj/project.pbxproj

Lines changed: 56 additions & 100 deletions
Large diffs are not rendered by default.

AAKeyboardApp/AAKAACollectionViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#import "AAKRegisterViewController.h"
1818
#import "AAKCloudAAViewController.h"
1919
#import "AAKHelpViewController.h"
20+
#import "AAKAAGroupForCollection.h"
2021

2122
@interface AAKAACollectionViewController () <AAKAACollectionViewCellDelegate, UIViewControllerTransitioningDelegate, UIPopoverPresentationControllerDelegate> {
2223
NSArray *_groups; /** AAKAAGroupForCollectionオブジェクトの配列 */
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//
2+
// AAKAAGroupForCollection.h
3+
// AAKeyboardApp
4+
//
5+
// Created by sonson on 2014/11/08.
6+
// Copyright (c) 2014年 sonson. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
@class AAKASCIIArtGroup;
12+
@class AAKASCIIArt;
13+
14+
@interface AAKAAGroupForCollection : NSObject
15+
16+
@property (nonatomic, readonly) AAKASCIIArtGroup *group;
17+
@property (nonatomic, readonly) NSArray *asciiarts;
18+
19+
+ (instancetype)groupForCollectionWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array;
20+
21+
@end
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//
2+
// AAKAAGroupForCollection.m
3+
// AAKeyboardApp
4+
//
5+
// Created by sonson on 2014/11/08.
6+
// Copyright (c) 2014年 sonson. All rights reserved.
7+
//
8+
9+
#import "AAKAAGroupForCollection.h"
10+
11+
@implementation AAKAAGroupForCollection
12+
13+
+ (instancetype)groupForCollectionWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array {
14+
return [[AAKAAGroupForCollection alloc] initWithGroup:group asciiarts:array];
15+
}
16+
17+
- (instancetype)initWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array {
18+
self = [super init];
19+
if (self) {
20+
_group = group;
21+
_asciiarts = array;
22+
}
23+
return self;
24+
}
25+
26+
@end

AAKeyboardApp/AAKCloudSendReportViewController.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#import "AAKCloudSendReportViewController.h"
1010

11+
#import "CKModifyRecordsOperation+AA.h"
12+
1113
@interface AAKCloudSendReportViewController() <UITextViewDelegate>
1214

1315
@property (nonatomic, strong) IBOutlet UITextView *commentTextView;

AAKeyboardApp/Base.lproj/Main.storyboard

Lines changed: 25 additions & 25 deletions
Large diffs are not rendered by default.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// UINavigationController+Rotate.h
3+
// AAKeyboardApp
4+
//
5+
// Created by sonson on 2015/01/15.
6+
// Copyright (c) 2015年 sonson. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@interface UINavigationController(Rotate)
12+
13+
@end
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//
2+
// UINavigationController+Rotate.m
3+
// AAKeyboardApp
4+
//
5+
// Created by sonson on 2015/01/15.
6+
// Copyright (c) 2015年 sonson. All rights reserved.
7+
//
8+
9+
#import "UINavigationController+Rotate.h"
10+
11+
12+
@implementation UINavigationController(Rotate)
13+
14+
- (NSUInteger)supportedInterfaceOrientations {
15+
if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone)
16+
return UIInterfaceOrientationMaskPortrait;
17+
return UIInterfaceOrientationMaskAll;
18+
}
19+
20+
@end
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//
2+
// UIViewController+Rotate.h
3+
// AAKeyboardApp
4+
//
5+
// Created by sonson on 2015/01/15.
6+
// Copyright (c) 2015年 sonson. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@interface UIViewController(Rotate)
12+
@end
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// UIViewController+Rotate.m
3+
// AAKeyboardApp
4+
//
5+
// Created by sonson on 2015/01/15.
6+
// Copyright (c) 2015年 sonson. All rights reserved.
7+
//
8+
9+
#import "UIViewController+Rotate.h"
10+
11+
@implementation UIViewController(Rotate)
12+
13+
- (NSUInteger)supportedInterfaceOrientations {
14+
if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone)
15+
return UIInterfaceOrientationMaskPortrait;
16+
return UIInterfaceOrientationMaskAll;
17+
}
18+
19+
@end

0 commit comments

Comments
 (0)