diary」カテゴリーアーカイブ

平成26年9月24日(水曜日)

カスタムセル ラベル配置 コンストレイント

取り敢えず 左端のボタンを右にどかして
str2の左に30,右に0を設定、更に上を設定してクリア。
他のパーツはコンストレイント設定無し。

詳細画面をビュウ版からテーブル版へ
罫線が表示されるので、印象は良い。
その他、検索 サーチバー関連でオブジェクト変更が可能。
(本日の発見)

あとは、9番のマップ表示変更(オン オフピンカラー変更)


平成26年9月22日(月曜日)

xcode 6.0.1 アップデート
iOS 8.0 アップデート
iphoneテーブルの表示(グループ表示)が大きくなりより見易くなる。
他、コンパイル、ラン特に問題なし。
xcode6、storyboardが軽快に、他細部のアイコンなどに変化がみられる程度。
違いはこれからか。
partial curlが消える不具合(仕様か?)。有り。

平成26年9月7日(日曜日)

DetailTableViewを非table版に変更。

segue → showDetail(push)

SearchBarの遷移先でObjectを変更すると、エラーになる件。
ERROR
2014-09-07 13:05:38.832 BeppuSpa88[13043:60b] mainview coredata exist don’t anything!!
2014-09-07 13:05:46.250 BeppuSpa88[13043:60b] *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2935.137/UITableView.m:1352
2014-09-07 13:05:46.262 BeppuSpa88[13043:60b] CoreData: error: Serious application error. An exception was caught from the delegate of NSFetchedResultsController during a call to -controllerDidChangeContent:. Invalid update: invalid number of sections. The number of sections contained in the table view after the update (2) must be equal to the number of sections contained in the table view before the update (11), plus or minus the number of sections inserted or deleted (0 inserted, 0 deleted). with userInfo (null)

解決済み、SEARCHBARカテゴリ参照。

他に、
ラベルに表示されない件について
detail viewのviewDidLoadに[self configureView]を追加して、解決。

[objc]
– (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
[self configureView];
_view2.backgroundColor=[UIColor colorWithRed:0.96 green:0.96 blue:0.86 alpha:0.3];
}
[/objc]

画面遷移の変更

[objc]
MapViewController.m
//
//DetailTableViewController *mycontroller = [self.storyboard instantiateViewControllerWithIdentifier:@"registered"];
DetailTableViewController *mycontroller = [self.storyboard instantiateViewControllerWithIdentifier:@"registered2"];
//
[/objc]