2020年5月3日日曜日

Privacy Policy

Privacy Policy
Showeach built the [百人一首暗唱] app as an Ad Supported app. This SERVICE is provided by Showeach at no cost and is intended for use as is.
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at [百人一首暗唱] unless otherwise defined in this Privacy Policy.

Information Collection and Use
For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to App Version, iOS Version. The information that I request will be retained on your device and is not collected by me in any way.
The app does use third party services that may collect information used to identify you.
Link to privacy policy of third party service providers used by the app

Log Data
I want to inform you that whenever you use my Service, in a case of an error in the app I collect data and information (through third party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing my Service, the time and date of your use of the Service, and other statistics.

Security
I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security.

Links to Other Sites
This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.

Changes to This Privacy Policy
I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page.
This policy is effective as of 2020-05-02

Contact Us
If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at this site comment.

2017年8月14日月曜日

CocoaPodsのエラーについて

ハマりましたので、覚え書きとして記録します。
PodsのValid Architectureの設定にi386が隠れていてはまりました。
削除、設定し直したら解決しました。

Pods installした後、なぜか、Apple Mach-O Linker Error」と「linker command failed with exit code 1」のエラーが消えませんでした。

Architecture 周りのエラーとして、当たりはつけていたのですが、Podsの方にも設定があるのを見過ごしていました。

本体のArchitectures Valid Architecture、PodsのArchitectures Valid Architectureの4カ所の設定が必要でした。

Build Active Architecture OnlyをNOにする、これも2カ所あります。

初期設定が残っていることが教訓でした。

こちらのリンクがわかりやすかったです。

Target iOS9.3Later 
Xcode 8.3.3
Pods version 1.3.1

2012年11月18日日曜日

メジャーアップデート

百人一首暗唱」をバージョンアップしました。

URL:
https://itunes.apple.com/jp/app/id490356562?mt=8

カスタマーレビューを参考に機能の拡張と情報の追加を行いました。

1. 各歌の表示に百人一首の歌人を追加記載しました

2. 歌の選択方法を選べるようにしました
 50音順(「上の句順」)だけでなく、「撰歌順」(百人一首順)、「決り字順」、「下の句順」でも歌を選べるようにしました。
 
 通常、扇子印(隠すボタン)を押すと、下の句が隠れますが、「下の句順」の場合は、下の句から上の句を連想できるように、上の句が隠れるようにしています。

3. 決り字も表示出来るようにしました
 筆印のボタンを押すことで、表示/非表示が切り替えられます。
 
4. その他、IOS6.0に対応するバージョンアップなどを行いました。

2012年3月4日日曜日

objective-c 文法まとめ

[オブジェクト名 メソッド名:引数]
[オブジェクト名 メソッド名]

@interface クラス:スーパークラス<プロトコル>
@class :他の場所で定義されたクラス名

IBOutlet 型 (*…クラス)インスタンス変数名
     型 (*…クラス)インスタンス変数名

-(戻り値)メソッド名:(引数型*)引数名

セッタ+ゲッタ = アクセサ


2012年1月28日土曜日

ProvisioningでDistribution用のcode signの作成

ディストリビューションを行う時に、code sign用のプロファイルを作成する必要あり。
デベロプメントと似ていますが、iTunes Connectでのプロファイルの作成が異なる。


【iTunes Connectで】
1. Apple IDの作成
2. Provisioningで「Distribution Provisioning Profile」を選択
 (開発の場合は、「Development Provisioning Profiles」)
3. new Profile をクリックして作成
    -Profile Name
    -上記AppleIDの入力
4. Submitの後、リロード


【マックのディスクトップ上で】
1.対象のプロビジョニングファイルをダウンロード
2.ダウンロードファイルをクリックするとorganizerに加わる


後は、Developmentと同じ




Target SummaryのidentifierをDistribution用に書き換える


Xcode4.2

2012年1月15日日曜日

改行方法(2方法)



コードで指定する場合は、

    ムニャムニャ.lineBreakMode = UILineBreakModeWordWrap//改行の有効化
を使用する。

改行コードは、\n (option +¥ )+n  
\バックスラッシュ +n



Xib使用の場合は、「Line Breaks」で指定する。







Xcode 4.2