Skip to content
wzrthhj edited this page Sep 5, 2016 · 9 revisions

Welcome to the keyboard wiki!

Allow full access

But one more think you need to give "Allow Full Access" From Settings -> Keyboard -> Keyboards -> select your app keyboard -> On switch of "Allow Full Access"And here my answer to show that option in settings. stackoverflow.com/questions/29597700/… – Nimit Parekh Apr 24 '15

http://i.stack.imgur.com/oFclS.png

iPhone & iPad keyboard size


iPhone (English): iPad (English): iPhone 4&5 portrait: 320 x 216, Landscape: 480 x 162 iPad portrait: 768 x 264, Landscape: 1024 x 352

copy image into pasteboard

  1. remote download

NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://warp.povusers.org/images/test.png"]]; UIPasteboard *pasteBoard=[UIPasteboard generalPasteboard]; [pasteBoard setData:data forPasteboardType:@"public.png"];

  1. local picture UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; NSData *imgData = UIImagePNGRepresentation(@"Your UIImage Here"); [pasteboard setData:imgData forPasteboardType:[UIPasteboardTypeListImage objectAtIndex:0]];

Good reference URL

1.iOS ui elements tutorial http://www.tutorialspoint.com/ios/ios_ui_elements.htm

2.iOS design pattern https://www.raywenderlich.com/46988/ios-design-patterns

3.visual format language for auto layout http://commandshift.co.uk/blog/2013/01/31/visual-format-language-for-autolayout/ Auto Layout Visual Format Language Tutorial https://www.raywenderlich.com/110393/auto-layout-visual-format-language-tutorial

  1. custom UICollectionView programmatically with swift https://randexdev.com/2014/07/uicollectionview/

  2. Swift: Selector syntax sugar https://medium.com/swift-programming/swift-selector-syntax-sugar-81c8a8b10df3#.emcm8gtkv

Clone this wiki locally