#iPhone & iPad launch images sizes
##Tablet (iPad) ###Non-Retina (1x) Portrait: 768 x 1024 Landscape: 1024 x 768
###Retina (2x) Portrait: 1536 x 2048 Landscape: 2048 x 1536
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
static NSString *cellName = @"CellViewName"; | |
CellChatEditNameGroup *aCellName = [tableView dequeueReusableCellWithIdentifier:cellName]; | |
if (aCellName == nil) { | |
NSArray *views = [[NSBundle mainBundle] loadNibNamed:cellName owner:nil options:nil]; | |
aCellName = (CellViewName *)[views objectAtIndex:0]; | |
} |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../yt-video/yt-search-video.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> |
#iPhone & iPad launch images sizes
##Tablet (iPad) ###Non-Retina (1x) Portrait: 768 x 1024 Landscape: 1024 x 768
###Retina (2x) Portrait: 1536 x 2048 Landscape: 2048 x 1536
##Generate and Install IPA's file in device through Command Line
###Thanks to Mattt and phonegap's scripts
Take a note: all this steps can be automatized in a single script, if you know how to write it. (Bash or Ruby will be fine)
1.- Install your Provisioning Profile and Developer Certificate
2.- Install Shenzhen and ios-deploy: the firstone will generate the IPA file and the secondone will install it onto your device
##Kill all process that matches a given partial name
search all process runing that match a given name. For this example is "process"
ps -ef | grep "process"
Kill all the processes that match with "process" string
pkill -f process
##Resolve issue from Android Studio: "No JVM installation found"
Download:
Issue resolved. Later you need to install all packages from SDK Manager in Android Studio. Don't forget to configure also, the environment PATH variable.