-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the keyboard wiki!
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 (English): iPad (English): iPhone 4&5 portrait: 320 x 216, Landscape: 480 x 162 iPad portrait: 768 x 264, Landscape: 1024 x 352
- 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"];
- local picture UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; NSData *imgData = UIImagePNGRepresentation(@"Your UIImage Here"); [pasteboard setData:imgData forPasteboardType:[UIPasteboardTypeListImage objectAtIndex:0]];
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
-
custom UICollectionView programmatically with swift https://randexdev.com/2014/07/uicollectionview/
-
Swift: Selector syntax sugar https://medium.com/swift-programming/swift-selector-syntax-sugar-81c8a8b10df3#.emcm8gtkv